Search found 1312 matches
- Fri Dec 05, 2025 9:25 am
- Forum: eXpress++ Support
- Topic: Color on Any array browse
- Replies: 5
- Views: 299
Re: Color on Any array browse
Put the color codeblock in a var and use it with every column. There is no such thing as a row object. Browses are composed from column( object)s, and columns are three cellgroup( object)s, one for the heading, one for the data area and one for the footing. The columns don't know each other. LOCAL a...
- Fri Dec 05, 2025 4:21 am
- Forum: eXpress++ Support
- Topic: Color on Any array browse
- Replies: 5
- Views: 299
Re: Color on Any array browse
This would be it with Wolfgang's suggestion. It may raise an error with an empty array since DC_GetColArray() always returns an empty string as the default. LOCAL aColor := {{{ GRA_CLR_RED,GRA_CLR_WHITE },{ GRA_CLR_BLACK,GRA_CLR_WHITE }} .... DCBROWSE oBrowse DATA aRecords .... DCBROWSECOL ELEMENT x...
- Fri Dec 05, 2025 1:12 am
- Forum: eXpress++ Support
- Topic: Color on Any array browse
- Replies: 5
- Views: 299
Re: Color on Any array browse
In addition to Wolfgang's reply: In DCBROWSECOL, the first parameter given to the color codeblock is the contens of the cell. So, if you have an array that has the values "a", "b" or "c" in any column, you can do something like this: LOCAL aColors := {{GRA_CLR_GREEN,GRA_CLR_BLACK},{GRA_CLR_RED,GRA_C...
- Sun Nov 30, 2025 4:44 am
- Forum: eXpress++ Support
- Topic: DcBrowse Cell Colors
- Replies: 14
- Views: 6843
Re: DcBrowse Cell Colors
The Euro sign is Chr(128) with charset ANSI and Chr(213) with charset OEM.
@Roger: Did you see that DC_XbpOwnerDrawBrowseGeneric() was added to get the multiline browse working with all colors? You did that based on my samples ten or twelve years ago.
@Roger: Did you see that DC_XbpOwnerDrawBrowseGeneric() was added to get the multiline browse working with all colors? You did that based on my samples ten or twelve years ago.
- Sat Nov 29, 2025 6:57 am
- Forum: eXpress++ Support
- Topic: Windows 11 widgets in XBase?
- Replies: 6
- Views: 1386
Re: Windows 11 widgets in XBase?
So, transparent dialogs with no borders and rounded corners with some typo and some pics on it? What's the problem?
- Fri Nov 28, 2025 10:18 am
- Forum: eXpress++ Support
- Topic: Windows 11 widgets in XBase?
- Replies: 6
- Views: 1386
Re: Windows 11 widgets in XBase?
What do you mean? Having something that looks like that or having these widgets inside your app?
- Tue Nov 11, 2025 2:46 am
- Forum: eXpress++ Support
- Topic: Communication between DBF and MDB files
- Replies: 5
- Views: 2299
- Mon Nov 10, 2025 8:33 am
- Forum: eXpress++ Support
- Topic: Communication between DBF and MDB files
- Replies: 5
- Views: 2299
Re: Communication between DBF and MDB files
With the ODBCDBE and the "Microsoft Access Database"-driver (as the DSN name), you should be able to directly access the tables.
- Thu Oct 30, 2025 4:07 am
- Forum: eXpress++ Support
- Topic: QR
- Replies: 15
- Views: 4550
Re: QR
Did you add AUTOSCALE?
- Wed Oct 29, 2025 5:48 am
- Forum: eXpress++ Support
- Topic: QR
- Replies: 15
- Views: 4550
Re: QR
You can't simply use a font for QR-barcodes, since they use one direction too much for fonts. Although I use a report generator (List&Label), which is able to generate all kinds of barcodes on the fly, I still have three or four old forms created with DCPRINT there and there. It should work with DCP...