Search found 1173 matches

by Tom
Fri Jun 24, 2011 1:58 am
Forum: eXpress++ Support
Topic: DCSAY with SAYSIZE 0, x
Replies: 5
Views: 9738

Re: DCSAY with SAYSIZE 0, x

@Markus: Create a subclass and do it there.
by Tom
Thu Jun 23, 2011 2:32 am
Forum: eXpress++ Support
Topic: Speed for dialog
Replies: 5
Views: 9496

Re: Speed for dialog

DC_MergeGetLists()?
by Tom
Thu Jun 09, 2011 2:41 am
Forum: User Contributions
Topic: updated touchscreen number pad
Replies: 16
Views: 37640

Re: updated touchscreen number pad

Besides Ownerdrawing: XbParts based on XbpDialogs can be shown within a "region", which can be a polygonic area of any shape. Look at DC_RegionArray() for samples.
by Tom
Fri May 27, 2011 5:02 am
Forum: eXpress++ Support
Topic: Editprotect and popup and combo buttons.
Replies: 8
Views: 12963

Re: Editprotect and popup and combo buttons.

Hi, Pedro.

Code: Select all

cTest := Space(30)
@ 1,1 DCGET cTest POPUP {||cTest := MyPopUpValue} KEYBLOCK {|a,b,o|o:Undo()}
Easier way: Create DCCOMBOBOXes instead. ;)
by Tom
Fri May 27, 2011 3:14 am
Forum: eXpress++ Support
Topic: Editprotect and popup and combo buttons.
Replies: 8
Views: 12963

Re: Editprotect and popup and combo buttons.

Hi, Pedro.

Set DC_GetPopupProtectHide(.T.) somewhere in your app. This will automatically hide popup- and combo-buttons if a get is edit-protected.
by Tom
Wed May 25, 2011 3:06 am
Forum: eXpress++ Support
Topic: Windows Server 8
Replies: 7
Views: 12872

Re: Windows Server 8

Run you app in "Windows XP compatibility mode".
by Tom
Fri May 20, 2011 5:27 am
Forum: eXpress++ Support
Topic: Task Bar Icon
Replies: 10
Views: 15789

Re: Task Bar Icon

That only works for non-modal windows. Modal windows don't have task bar entries.
by Tom
Fri May 20, 2011 4:57 am
Forum: eXpress++ Support
Topic: Task Bar Icon
Replies: 10
Views: 15789

Re: Task Bar Icon

DCGET OPTIONS ICON <nIconId>
by Tom
Wed May 11, 2011 10:07 am
Forum: eXpress++ Support
Topic: Lock errro
Replies: 5
Views: 10186

Re: Lock errro

@Chris: Damned, you're right! :shock:
by Tom
Wed May 11, 2011 7:18 am
Forum: eXpress++ Support
Topic: Lock errro
Replies: 5
Views: 10186

Re: Lock errro

Hi, Fred. This condition is never true: DO WHILE .NOT. ( XLOCK := RLOCK() ) xLock := RLock() means xLock becomes RLock(). This happens anyway, even if RLock returns false. This should be correct: DO WHILE .NOT. ( XLOCK = RLOCK() ) Your app worked so far by mistake: This (a failing lock) simply never...