Search found 1206 matches
- Fri Dec 06, 2024 1:07 am
- Forum: Xbase++ 2.0
- Topic: ZIP library
- Replies: 12
- Views: 3197
Re: ZIP library
Still xbzlib without any problems.
- Thu Dec 05, 2024 10:04 am
- Forum: eXpress++ Support
- Topic: printing to pdf error
- Replies: 8
- Views: 2261
Re: printing to pdf error
Hi, Deleting the PDF when it is open won't work. I just tried in Explorer and even a rename isn't possible when the PDF is open. Seems to me that the only solution is to check if it is open and if so don't create the new file. In the next cycle after an hour try it again. Or create the files with an...
- Fri Nov 15, 2024 2:41 am
- Forum: PostGreSQL
- Topic: More PGDBE questions
- Replies: 29
- Views: 15949
Re: More PGDBE questions
Hi Roger, I am highly frustrated over the lag time in trying to get any kind of support from any developers these days. I would like to help you, but I have no experience with PGDBE and I don't plan to do anything with it. I'm afraid it isn't used by a lot of developers, so there is almost no experi...
- Mon Oct 14, 2024 12:50 am
- Forum: PostGreSQL
- Topic: Developer's License required
- Replies: 2
- Views: 4397
Re: Developer's License required
Hi Roger,
When I had read you are working on a project for 1200 NY courts, i was thinking about the amount of licences you will need when you move to the PGdbe. Don't forget there is a licence fee for each user!
When I had read you are working on a project for 1200 NY courts, i was thinking about the amount of licences you will need when you move to the PGdbe. Don't forget there is a licence fee for each user!
- Thu Sep 26, 2024 4:15 am
- Forum: eXpress++ Support
- Topic: DCSAY... GET .... VALID ... question
- Replies: 13
- Views: 14277
Re: DCSAY... GET .... VALID ... question
Hi,
I use this code without any problem. The o and lOk are used in the complete valid clause, which is not executed when nothing is changed.
The code is a snippet out of my application. I don't have a standalone sample.
I use this code without any problem. The o and lOk are used in the complete valid clause, which is not executed when nothing is changed.
The code is a snippet out of my application. I don't have a standalone sample.
- Wed Sep 25, 2024 1:14 am
- Forum: eXpress++ Support
- Topic: DCSAY... GET .... VALID ... question
- Replies: 13
- Views: 14277
Re: DCSAY... GET .... VALID ... question
Hi, This is the system I use: - Popup sets the cargo of the GET to .T.. - Valid checkes if the cargo is set and if there was a change. If not, the valid returns .T. without processing the valid code. Make sure it sets the cargo to .F.. - GETEVAL sets the cargo to .F. as default @ 1,1 DCSAY "TEST: GE...
- Mon Sep 23, 2024 1:13 am
- Forum: eXpress++ Support
- Topic: Where you can see an example of the use of DCPANEL
- Replies: 5
- Views: 8070
Re: Where you can see an example of the use of DCPANEL
Hi Roger,
In that sample the following include file is used: #include "shdocvw.ch".
Seems as this is not in the exp20 package?
In that sample the following include file is used: #include "shdocvw.ch".
Seems as this is not in the exp20 package?
- Thu Sep 05, 2024 11:33 pm
- Forum: eXpress++ Support
- Topic: Using AT on a Return on Url
- Replies: 4
- Views: 8198
Re: Using AT on a Return on Url
Hi, maybe sometimes there is a 'page not found' or another error. You could test on the lenght of cResult as 'if (len(cResult)<500' then it can't be correct. Sometimes I also check for a specific text in the file. If there should be a specific tag in the result (xml), you could test 'if 'specific ta...
- Wed Jul 10, 2024 1:35 am
- Forum: eXpress++ Support
- Topic: Spreadsheet options
- Replies: 3
- Views: 9970
Re: Spreadsheet options
Hi, Maybe you can have one application on the server which processes the data and creates the XLS? In this case you only need to have one Excel licence. You could do this with a soap server or rest-api. - Prepare the data as csv and put this on the server. - Send a request to convert the csv to xls ...
- Tue Jul 02, 2024 11:47 pm
- Forum: eXpress++ Support
- Topic: How can I print an XML or HTML document
- Replies: 2
- Views: 8871
Re: How can I print an XML or HTML document
Hi,
The following should work.
The following should work.
Code: Select all
DllCall( "Shell32.dll" , DLL_STDCALL, "ShellExecuteA", 0, "print", "your file", Chr(0), Chr(0), 3 )