Search found 637 matches

by Victorio
Sat Nov 14, 2015 10:00 am
Forum: eXpress++ Support
Topic: DCHTMLVIEWER
Replies: 11
Views: 16667

Re: DCHTMLVIEWER

Ascii files has several MB, for example 12MB, but can be also 50-100MB.
by Victorio
Thu Nov 12, 2015 8:29 am
Forum: eXpress++ Support
Topic: DCHTMLVIEWER
Replies: 11
Views: 16667

DCHTMLVIEWER

Hi, What limit for file size is with DCHTMLVIEWER ? I want use it for open Ascii text files. But if file is small, all is ok,then if file has about severam MB, fine not open, show only "clock". What is better for show ascii text files (reports) ? I need in it function for search, and print, also for...
by Victorio
Tue Oct 27, 2015 7:24 am
Forum: Xbase++ 2.0
Topic: C language and Xbase
Replies: 20
Views: 41380

Re: C language and Xbase

yes, both are local
...
Local j, pomznak
...
by Victorio
Tue Oct 27, 2015 2:39 am
Forum: Xbase++ 2.0
Topic: C language and Xbase
Replies: 20
Views: 41380

Re: C language and Xbase

Hi Terry, Super, one mathematical operation (-1) spare save another 5 seconds :) Thanks. Now comparing : C++code : 6 seconds Alaska befor change (for j=0 to pomznak-1) : 17 seconds Alaska after change (for j=1 to pomznak) : 12 seconds here Xbase is only 2x slower than C. It is important for me, beca...
by Victorio
Mon Oct 26, 2015 7:43 am
Forum: Xbase++ 2.0
Topic: C language and Xbase
Replies: 20
Views: 41380

Re: C language and Xbase

OK :D I bought Alaska Xbase and eXpress in december 2014 ... and first running exe was my holiday :P
by Victorio
Mon Oct 26, 2015 7:11 am
Forum: Xbase++ 2.0
Topic: C language and Xbase
Replies: 20
Views: 41380

Re: C language and Xbase

ok, thanks all for tips and help. now I must reprogramming every utilities in C++ and implement it to main application with Gui. After it I will see how program work. I like Ca Clipper also for his power in comparing with FoxPro. Now I like Xbase too :) I am sure , that Alaska Xbase and eXpress is p...
by Victorio
Mon Oct 26, 2015 5:28 am
Forum: Xbase++ 2.0
Topic: C language and Xbase
Replies: 20
Views: 41380

Re: C language and Xbase

Hi I did optimalization of code, read full file to variable, and then select byte to byte in this variable with x=textfile . This help me save some time. Compare C++ code and Alaska now for process file with size 12MByte is : C++ code : 6 seconds Alaska code first example without optimalization byte...
by Victorio
Wed Oct 21, 2015 12:01 pm
Forum: Xbase++ 2.0
Topic: C language and Xbase
Replies: 20
Views: 41380

Re: C language and Xbase

FGetc read byte/character from file, FPutc write byte/character to file. Before file must be open by fopen. It is same than in Xbase Fread, Fwrite, Fopen. I tested same algorithm in Xbase, but if I read and write in cycle one by one byte it is slower. Tomorrow I want test read first file to array an...
by Victorio
Wed Oct 21, 2015 5:11 am
Forum: Xbase++ 2.0
Topic: C language and Xbase
Replies: 20
Views: 41380

Re: C language and Xbase

Hi, I made some test for compare speed between C language and Xbase. I made same program utility in Xbase with using function for read and write to file (fread, fwrite) because it is same as in C utility. Time processing is for example : C - 22 sec Xbase 3 sec I reading byte to byte from file and wr...
by Victorio
Sun Oct 18, 2015 11:16 pm
Forum: Xbase++ 2.0
Topic: C language and Xbase
Replies: 20
Views: 41380

Re: C language and Xbase

thanks for info. In C utility I have many string manipulation (coding, decoding, lempel ziv algoritm, code page converting..) and file manipulations (read, write from/to ascii file). OK, first I test it in Xbase , file access will use DC_TxtOpen,TxtLine..., what time processing will be. I want exami...