Search found 27 matches

by rsmarks
Tue Dec 15, 2015 4:04 pm
Forum: eXpress++ Support
Topic: Install Build 263 fails
Replies: 13
Views: 17230

Re: Install Build 263 fails

Your updated dll worked and solved another problem I had with getting an Unknown variable error cGETOPT_SOURCEEDITOR Called from DC_GETLIST:INIT(573)
by rsmarks
Tue Dec 15, 2015 3:03 pm
Forum: eXpress++ Support
Topic: Install Build 263 fails
Replies: 13
Views: 17230

Re: Install Build 263 fails

New version of xbase has adsutil.dll in C:\Program Files (x86)\Alaska Software\cxp20\bin, but now I had problem with getting an Unknown variable error cGETOPT_SOURCEEDITOR Called from DC_GETLIST:INIT(573). Your new dll fixed this.
by rsmarks
Tue Dec 15, 2015 9:43 am
Forum: eXpress++ Support
Topic: Install Build 263 fails
Replies: 13
Views: 17230

Re: Install Build 263 fails

adsutil.dll
by rsmarks
Mon Dec 14, 2015 6:36 pm
Forum: eXpress++ Support
Topic: Install Build 263 fails
Replies: 13
Views: 17230

Re: Install Build 263 fails

I've reinstalled everything. It still does not work because I have a Foundation subscription. Please let me know as soon as you have a version that will work. Thx.
by rsmarks
Fri Dec 11, 2015 12:54 pm
Forum: eXpress++ Support
Topic: Install Build 263 fails
Replies: 13
Views: 17230

Re: Install Build 263 fails

My bad. Should I uninstall and reinstall express 2.0 just to make sure everything is as you intended before you give me the corrections needed for my foundation subscription?
by rsmarks
Fri Dec 11, 2015 4:32 am
Forum: eXpress++ Support
Topic: Install Build 263 fails
Replies: 13
Views: 17230

Re: Install Build 263 fails

Just to clarify, I have never used Dcxml. When I ran c:\exp20\Build20.bat I had to comment out its build. I assumed I had to run Build20.bat to make sure it was compatible with my current version of xbase++ and that I have to rerun in whenever I update xbase++ to a new build
by rsmarks
Thu Dec 10, 2015 6:04 pm
Forum: eXpress++ Support
Topic: Install Build 263 fails
Replies: 13
Views: 17230

Install Build 263 fails

After cleaning up references to C:\expd20 in some of the build files, the DCXML\BUILD20 failed with ALINK: fatal error ALK4001: cannot open file "asxml10.lib" because I do not have that lib in my xbase foundation subscription. So I skipped that build. After I recompiled my program it will not start ...
by rsmarks
Wed Jul 29, 2015 5:10 pm
Forum: eXpress++ Support
Topic: Disable Page Down key functionality in DCCOMBOBOX
Replies: 8
Views: 11840

Re: Disable Page Down key functionality in DCCOMBOBOX

Perfect! Thanks for all your help.
by rsmarks
Wed Jul 29, 2015 8:52 am
Forum: eXpress++ Support
Topic: Disable Page Down key functionality in DCCOMBOBOX
Replies: 8
Views: 11840

Re: Disable Page Down key functionality in DCCOMBOBOX

Here you go. If I run the program and hit PGDN, the last name will be selected. By the way, I did try to intercept ::XbpCombo:XbpSLE, but it did not work. Thanks #include "dcdialog.ch" #INCLUDE "appevent.CH" FUNCTION Main() LOCAL GetList:={}, GetOptions LOCAL nSlsHt, lReminder:=.F., cSlsmn1:="1235 J...
by rsmarks
Tue Jul 28, 2015 4:43 pm
Forum: eXpress++ Support
Topic: Disable Page Down key functionality in DCCOMBOBOX
Replies: 8
Views: 11840

Re: Disable Page Down key functionality in DCCOMBOBOX

Alas, it did not work. I tried: @ 1,1 DCCOMBOBOX cSlsmn LIST aSlsIDs SIZE 22,8 TYPE XBPCOMBO_DROPDOWNLIST ; EVAL {|o|o:keyboard := {|a,b,o|IIF(a==xbeK_PGDN,DC_ClearEvents(),nil)}} Hitting PGDN from the SLE selects the last element in the array. The only time this dues not happen is if I first click ...