Search found 83 matches

by SlavkoDam
Thu Apr 18, 2024 1:58 am
Forum: eXpress++ Support
Topic: How can I develop a DLL IN Xbase++ to use it in a C# program
Replies: 10
Views: 70

Re: How can I develop a DLL IN Xbase++ to use it in a C# program

HTTPCTR.EXE starts Service app whose executable that it implements is HTTPSERVICE.EXE. So, you have to call only HTTPCTR.EXE with install option, and it will start HTTPSERVICE.EXE internally. Endpoint URLs or controls that HTTP server will handle, have to be created in HttpJob() class in httpjob.prg...
by SlavkoDam
Wed Apr 17, 2024 11:22 pm
Forum: eXpress++ Support
Topic: How can I develop a DLL IN Xbase++ to use it in a C# program
Replies: 10
Views: 70

Re: How can I develop a DLL IN Xbase++ to use it in a C# program

Hi Diego, You don't need IIS to create and use HTTP Server. You can create standalone HTTP server in Xbase++ in 3 ways. 1. Use HttpEndpoint() class() to create HTTP server, and WebHandler() class to serve REST requests. You have examples how to do this in the documentation of these classes. 2. Use S...
by SlavkoDam
Wed Apr 03, 2024 2:31 am
Forum: eXpress++ Support
Topic: Postgre ISAM command
Replies: 9
Views: 478

Re: Postgre ISAM command

This is the solution how to create filter/WHERE expression with a date value in PgSql. I implemented that in my PowerSql library and it works excellent. cDate = "'" + DTOS(dDate) + "'" For example, if the date value is 31.03.2024, in German format, do this: SET FILTER TO datefld >= '20240331' DBSETF...
by SlavkoDam
Wed Apr 03, 2024 2:07 am
Forum: eXpress++ Support
Topic: Postgre ISAM command
Replies: 9
Views: 478

Re: Postgre ISAM command

You can't build filters that are more complex than simple expressions like "name = 'Miller'". That means: filters are f*cking useless with the PGDBE. If you search the Alaska Knowledge Base for "PGDBE", you will find a lot of open PDRs concerning filters, and I don't believe they will ever get clos...
by SlavkoDam
Tue Apr 02, 2024 12:15 am
Forum: eXpress++ Support
Topic: Postgre ISAM command
Replies: 9
Views: 478

Re: Postgre ISAM command

It seems that Tom finally figured out that filters should not be used in PgSql, as he said they are "f*cking useless". I told him the same before, but he claimed that they work excellent. ;) Tom, it is be better to use this code for searching, since it works much faster than to do manual SKIP for ea...
by SlavkoDam
Fri Mar 15, 2024 1:01 am
Forum: Announcements
Topic: TEST versions of Power libraries
Replies: 0
Views: 197

TEST versions of Power libraries

Hello everyone, I have developed several add-on libraries for Xbase++ programming, for different fields of application. They have a generic name Power libraries. You can find more information about them on the site: https://www.sd-softdesign.com. You can download documentation, DEMO programs and TES...
by SlavkoDam
Mon Mar 11, 2024 3:58 am
Forum: Xbase++ 2.0
Topic: Listbox colours
Replies: 8
Views: 514

Re: Listbox colours

Tom, Yes, its a fine option in eXpress++ and I implemented a similar one in my PowerWin. But, its only a help to select a value into a get field when you press a popup button, and not a direct get select as XbpListBox. To return to the beginning, the initial request was to change font and colors of ...
by SlavkoDam
Mon Mar 11, 2024 2:10 am
Forum: Xbase++ 2.0
Topic: Listbox colours
Replies: 8
Views: 514

Re: Listbox colours

I don't agree with you. You cannot compare XbpListBox with XbpBrowse and XbpQuickBrowse. You cannot use XbpBrowse and XbpQuickBrowse as GET elements. XbpBrowse don't have :dataLink property, and in XbpQuickBrowse :dataLink property and :getData() method have different purposes. They also don't have ...
by SlavkoDam
Mon Mar 11, 2024 12:57 am
Forum: Xbase++ 2.0
Topic: Listbox colours
Replies: 8
Views: 514

Re: Listbox colours

Hi, This is not the way to change font and colors in a XbpListBox, with the XBP_PP_* parameters. You can do that with the XbpListBox owner-draw option, setting :drawMode = XBP_DRAW_OWNER, and using :drawItem() and :measureItem() methods. To create a CSS sheet for a XbpListBox, use XbpListBox:visualS...
by SlavkoDam
Wed Feb 28, 2024 6:14 am
Forum: eXpress++ Support
Topic: Excel remove duplicates
Replies: 16
Views: 1049

Re: Excel remove duplicates

Hi Viktor, Since you want to compare 35 out of 36 fields for equality, my Excel code can be modified not to compare each column values as it is now, but to compare values of entire rows, or values of a range of columns. So, there will be only one compare statement per each row, and no need to sum va...