Search found 1198 matches

by skiman
Wed Jul 10, 2024 1:35 am
Forum: eXpress++ Support
Topic: Spreadsheet options
Replies: 3
Views: 838

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 ...
by skiman
Tue Jul 02, 2024 11:47 pm
Forum: eXpress++ Support
Topic: How can I print an XML or HTML document
Replies: 2
Views: 679

Re: How can I print an XML or HTML document

Hi,

The following should work.

Code: Select all

DllCall( "Shell32.dll" , DLL_STDCALL, "ShellExecuteA", 0, "print", "your file", Chr(0), Chr(0), 3 )
by skiman
Thu Jun 27, 2024 5:25 am
Forum: eXpress++ Support
Topic: ZAP and PACK command for DBF files - error Win 11
Replies: 29
Views: 3195

Re: ZAP and PACK command for DBF files - error Win 11

Hi, Jimmy, Xbase++ can only use 1 x CPU. Multi-Threading, under Xbase++, does not use multi-CPU. This is not true at all. You should read the SetLogicalProcessor() and GetLogicalProcessorCount() functions. This is what Alaska documentation says: Xbase++ does not use multi-CPU. When you change the pr...
by skiman
Tue Jun 18, 2024 4:19 am
Forum: eXpress++ Support
Topic: oBrowse:colcount hidden columns
Replies: 4
Views: 960

Re: oBrowse:colcount hidden columns

Hi Tom, Slavko,

Thanks for the insights.
by skiman
Mon Jun 17, 2024 5:13 am
Forum: eXpress++ Support
Topic: oBrowse:colcount hidden columns
Replies: 4
Views: 960

oBrowse:colcount hidden columns

Hi,

I have a browse with hidden columns. How can I get ALL the columns of the browse? Seems as colcount doesn't show the hidden columns.
by skiman
Thu Apr 18, 2024 3:04 am
Forum: eXpress++ Support
Topic: Remote APP and tooltip problem
Replies: 0
Views: 5956

Remote APP and tooltip problem

Hi, A lot of our customers are working via remote desktop. This is working very well without problems. Since a few weeks we are also using remoteapp to start our application via a shortcut on their desktop. This way they can start with one click, and they don't use the desktop on the server. When st...
by skiman
Tue Apr 09, 2024 12:32 am
Forum: Did you Know?
Topic: A web service for your data
Replies: 14
Views: 16334

Re: A web service for your data

Hi Roger,

Are you using xb2net of the httpclient of Xbase++? Are you using http or https?
by skiman
Mon Mar 18, 2024 1:53 am
Forum: eXpress++ Support
Topic: Printing errors on Win 11
Replies: 4
Views: 4411

Re: Printing errors on Win 11

Hi,

After looking around on the net I see that the printscreens I got from the customer are the same as in the following article.
https://wiki.autocountsoft.com/wiki/Oth ... dows_11%3F

On my PC I have the OLD print dialog so I can't try it.
by skiman
Mon Mar 18, 2024 1:47 am
Forum: eXpress++ Support
Topic: Printing errors on Win 11
Replies: 4
Views: 4411

Re: Printing errors on Win 11

Hi, I recently got the same message from a customer. In his case it is a one page report that is shown on the screen with the preview. The moment he wants to print it, the application shuts down. This is since the last update of Windows 11. I can't simulate it on my Win11 with the same update. The o...
by skiman
Wed Feb 28, 2024 4:30 am
Forum: eXpress++ Support
Topic: Printing BITMAP with transparent background
Replies: 1
Views: 4689

Printing BITMAP with transparent background

Hi, When printing a bitmap with transparent background sometimes this will be just a black rectangle. See also: https://ilx.alaska-software.com/index.php?threads/printing-images-with-transparent-areas.133/ This can be implemented in Express in _dcprc.prg. Add the function at the bottom: FUNCTION Get...