Search found 79 matches

by SlavkoDam
Fri Mar 15, 2024 1:01 am
Forum: Announcements
Topic: TEST versions of Power libraries
Replies: 0
Views: 93

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: 344

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: 344

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: 344

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: 851

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...
by SlavkoDam
Tue Feb 27, 2024 4:49 am
Forum: eXpress++ Support
Topic: Excel remove duplicates
Replies: 16
Views: 851

Re: Excel remove duplicates

Hi, Yes, "." have to be replaced with ":", its Xbase++ syntax. Yes, duplicates can be in different places of the table, not only the following records. So, first you have to sort range with Sort method. Here is an example for the first 2 columns. ActiveSheet:Range("A1:C1000"):Sort(ActiveSheet:Range(...
by SlavkoDam
Tue Feb 27, 2024 3:59 am
Forum: eXpress++ Support
Topic: Excel remove duplicates
Replies: 16
Views: 851

Re: Excel remove duplicates

Hi, Its obvious that Xbase++ AutomationObject don't convert Xbase++ array to VB array in the right way. You can use the following manual algorithm for deleting duplicate rows on the first 2 columns, without RemoveDuplicates method. It will do the job as well. FOR I = 1 TO oRange:Rows:Count IF I = oR...
by SlavkoDam
Sun Feb 25, 2024 5:17 am
Forum: CXP / Web Development
Topic: PowerWeb Demo Program Attachment
Replies: 22
Views: 8003

Re: PowerWeb Demo Program Attachment

Hi Joe,

I am interested have you finished your studying of PowerWeb demo and PowerWeb library with all their changes and improvements in the meantime, and what are your impressions? I will appreciate your opinion. Thanks.
by SlavkoDam
Sun Feb 25, 2024 4:34 am
Forum: eXpress++ Support
Topic: DCBROWSECOL ... HIDE
Replies: 8
Views: 1220

Re: DCBROWSECOL ... HIDE

Hi Cris,

I am interested did you try my code and does it work well?
by SlavkoDam
Sun Feb 25, 2024 4:27 am
Forum: eXpress++ Support
Topic: Excel remove duplicates
Replies: 16
Views: 851

Re: Excel remove duplicates

Hi, As you know, you cannot use syntax you tried from Internet, because its VB syntax and not Xbase++ syntax. For Xbase++ syntax you have to read Xbase++ AutomationObject() class documentation. I send you attached MS VBA documentation for Excel 2010, and a program to install to open that file type. ...