Search found 35 matches
- Thu Feb 04, 2021 5:12 pm
- Forum: eXpress++ Support
- Topic: Multi line column header problem
- Replies: 5
- Views: 6636
Re: Multi line column header problem
Perfect, thank You!
- Thu Feb 04, 2021 2:54 pm
- Forum: eXpress++ Support
- Topic: Multi line column header problem
- Replies: 5
- Views: 6636
Re: Multi line column header problem
It works, but introduces other issues. There are many new parts in this prg file which is not compatible the other prg files I have here. Theres is too many changes in the source code, I can't find which change responsible for this problem. Please copy here the modified part of the code, so I can ch...
- Thu Feb 04, 2021 9:31 am
- Forum: eXpress++ Support
- Topic: Multi line column header problem
- Replies: 5
- Views: 6636
Re: Multi line column header problem
It works well with express 265, and not works from express 266.
- Wed Feb 03, 2021 11:49 am
- Forum: eXpress++ Support
- Topic: Multi line column header problem
- Replies: 5
- Views: 6636
Multi line column header problem
Hi Roger! When a column in DCBROWSE has a multi line header, and has a SORT block, only the first line displayed in the header. If I remove ther SORT block, it displays the header line correctly. DCBROWSECOL ELEMENT 1 HEADER 'File;Name' WIDTH 10 PARENT oBrowse ; SORT {||ASort(aDir,,,{|a,b|a[1]<b[1]}...
- Sun Jan 31, 2021 4:30 am
- Forum: eXpress++ Support
- Topic: Macro get problem
- Replies: 10
- Views: 11565
Re: Macro get problem
I found why not worked for me.
I copied only the GetSetAliased() function from your new code to mine, beacause I did not notice the calling of the function was changet by a @ too.
Now it is working.
Thank You.
I copied only the GetSetAliased() function from your new code to mine, beacause I did not notice the calling of the function was changet by a @ too.
Now it is working.
Thank You.
- Sat Jan 30, 2021 2:13 pm
- Forum: eXpress++ Support
- Topic: Macro get problem
- Replies: 10
- Views: 11565
Re: Macro get problem
Yes it is working, but I need the source code too.
A made some customizations in the source code for my needs, so I need the source to be able to make my own dclipx.dll
A made some customizations in the source code for my needs, so I need the source to be able to make my own dclipx.dll
- Sat Jan 30, 2021 12:14 pm
- Forum: eXpress++ Support
- Topic: Macro get problem
- Replies: 10
- Views: 11565
Re: Macro get problem
I tried to use this, but still not working here.
Try with the original dclipx.dll as it is after installing it.
I attached a zip file with the dclipx.dll and the test program.
When You write something in the gets, after the enter key the changes disappears in the edit box.
Try with the original dclipx.dll as it is after installing it.
I attached a zip file with the dclipx.dll and the test program.
When You write something in the gets, after the enter key the changes disappears in the edit box.
- Fri Jan 29, 2021 4:58 pm
- Forum: eXpress++ Support
- Topic: Macro get problem
- Replies: 10
- Views: 11565
Re: Macro get problem
It is in my first post. The first code part is a standalone test program. This is it: #INCLUDE "dcdialog.ch" #pragma Library("dclipx.lib") PROC appsys RETURN PROCEDURE DBESYS DbeLoad("FOXDBE") DbeLoad("CDXDBE") DbeBuild("FOXCDX","FOXDBE","CDXDBE") RETURN PROCEDURE main LOCAL i, GetList[0], GetOption...
- Fri Jan 29, 2021 12:57 pm
- Forum: eXpress++ Support
- Topic: Macro get problem
- Replies: 10
- Views: 11565
Re: Macro get problem
I tried it and not working, the result is same as before.
Try testing with my test program.
Try testing with my test program.
- Thu Jan 28, 2021 1:50 pm
- Forum: eXpress++ Support
- Topic: Macro get problem
- Replies: 10
- Views: 11565
Macro get problem
Hi Roger! I found a problem when using GET for a database field with a macro. This is sample program: #INCLUDE "dcdialog.ch" #pragma Library("dclipx.lib") PROC appsys RETURN PROCEDURE DBESYS DbeLoad("FOXDBE") DbeLoad("CDXDBE") DbeBuild("FOXCDX","FOXDBE","CDXDBE") RETURN PROCEDURE main LOCAL i, GetLi...