Search found 627 matches

by Victorio
Tue Feb 15, 2022 3:52 am
Forum: eXpress++ Support
Topic: Automatic Updater for application
Replies: 23
Views: 11345

Re: Automatic Updater for application

Hi Tom, I tryed this , but it is not work for all DLLs, when I use DLLLOAD() in program. For example when I have in program snDll := DllLoad('DESDLL.DLL') But this I can determine simply with text search DLLLOAD, in my app only two dll are loaded with this function, thats no problem. Is it sure, tha...
by Victorio
Tue Feb 15, 2022 1:33 am
Forum: eXpress++ Support
Topic: Automatic Updater for application
Replies: 23
Views: 11345

Re: Automatic Updater for application

Please , how can I determine, which DLL files are necessary to run application ? Without look to all PRG files, where can be #include ....DLL .
I need this to create minimal pack for application to send users, because actually runtime has about 51 files.
Is this possible ?
by Victorio
Mon Feb 14, 2022 6:09 am
Forum: eXpress++ Support
Topic: Automatic Updater for application
Replies: 23
Views: 11345

Re: Automatic Updater for application

I'm watching to XPPLOAD.EXE , and this can help me, if there are parameters as path

XPPLOAD [<options>] [version] [[<path>]<file1>] [<file2>] [@<list-file>]

but if this can use, I must first "send" xppload.exe to all users before I can use it.
by Victorio
Mon Feb 14, 2022 6:05 am
Forum: eXpress++ Support
Topic: Automatic Updater for application
Replies: 23
Views: 11345

Re: Automatic Updater for application

Hi all, My update system : On FTP is folder UPDATE, where I uploading all new files, EXE, DLL,DBF... and also one text file VERSION.TXT where is informations about new version User run application, and this connect to FTP and check VERSION.TXT and compare with local VERSION.TXT, if on FTP is newer v...
by Victorio
Fri Feb 11, 2022 8:47 am
Forum: eXpress++ Support
Topic: Automatic Updater for application
Replies: 23
Views: 11345

Automatic Updater for application

Hi, My application running on many offices, and now when I update eXpress++ from version 260 to 265, I need update dll . My default updater which I programmed function : client / user run program program go to FTP and read one text file on FTP (wia WinSCP FTP client) where is info about actually ver...
by Victorio
Fri Oct 22, 2021 3:13 am
Forum: eXpress++ Support
Topic: Xbase program as service in background
Replies: 5
Views: 4316

Re: Xbase program as service in background

Thanks , i will look it
by Victorio
Thu Oct 21, 2021 11:54 pm
Forum: eXpress++ Support
Topic: Xbase program as service in background
Replies: 5
Views: 4316

Xbase program as service in background

Hi,
Is possible create xbase app as service , which show in task bar on right side ? I need this to run on server where running more processes.
by Victorio
Mon Aug 30, 2021 4:32 am
Forum: eXpress++ Support
Topic: fatal XBT0407: System memory exhausted
Replies: 10
Views: 9559

Re: fatal XBT0407: System memory exhausted

Roger, you are true, now I will now I will avoid creating big source codes.
It also saves me time when debugging code.
Thanks for info.
by Victorio
Wed Aug 25, 2021 8:47 am
Forum: eXpress++ Support
Topic: fatal XBT0407: System memory exhausted
Replies: 10
Views: 9559

Re: fatal XBT0407: System memory exhausted

No Tom, I have 2.0 foundation release 544 . But now problem is solved (I hope) . Before modification I have one main PRG and many (more than 100) smaller PRGs and this was included to main PRG with SET PROCEDURE TO "modulexxx.PRG"... I mean compiler this PRG saw as one big PRG with several hundrets ...
by Victorio
Wed Aug 25, 2021 3:08 am
Forum: eXpress++ Support
Topic: fatal XBT0407: System memory exhausted
Replies: 10
Views: 9559

Re: fatal XBT0407: System memory exhausted

At this moment my program compiled without problems. When I change system where in main.prg module was all other PRGs as SET PROCEDURE TO "PROGRAM01.PRG" etc. to put them to project and create separater OBJs, problem solved. This looks , compiler or linker have problem when one PRG have many rows (i...