Search found 1168 matches

by Tom
Wed May 25, 2011 3:06 am
Forum: eXpress++ Support
Topic: Windows Server 8
Replies: 7
Views: 12811

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

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

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

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

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...
by Tom
Thu May 05, 2011 4:09 pm
Forum: eXpress++ Support
Topic: Resizing - show windows overlapping, side by side and others
Replies: 0
Views: 4714

Resizing - show windows overlapping, side by side and others

Since Windows XP, a user is able to right-click on the task bar and select "show windows overlapping/side by side ...". If the layout of an app is based on a more ... conservative approach, this will cause (especially with a MDI-app which generates windows for each instance/document/module) a very u...
by Tom
Thu Apr 14, 2011 10:38 am
Forum: eXpress++ Support
Topic: PRINT TO MULTIPLE PRINTERS SIMULTANEOUSLY
Replies: 4
Views: 9367

Re: PRINT TO MULTIPLE PRINTERS SIMULTANEOUSLY

Code: Select all

DCPRINT ON ... NAME <cMyPrinterName>

... print

DCPRINT OFF
by Tom
Thu Apr 07, 2011 2:19 am
Forum: eXpress++ Support
Topic: Error WINDOWHEIG WindowWidth DCGETOPTIONS 880 710 NOMAXBUTTO
Replies: 19
Views: 25783

Re: Error WINDOWHEIG WindowWidth DCGETOPTIONS 880 710 NOMAXBUTTO

Hi, Nolberto. You don't have a problem with the size settings, but there is a lost workarea reference (alias) inside the to-be-resized-dialog. Refreshing the dialog (after resize) rereads the values of the dialog elements. And at least one of those points to a workarea which is not available anymore...
by Tom
Thu Apr 07, 2011 2:12 am
Forum: eXpress++ Support
Topic: Static with no border
Replies: 3
Views: 7811

Re: Static with no border

Hi, Jack. An empty static of the type XBPSTATIC_TYPE_TEXT - or just simply "DCSAY", which is almost the same - is a good invisible parent for lots of situations. If you have a combo box and don't want your (automatically sized, using DCREAD ... FIT) dialog to show an empty area below the combo, just...
by Tom
Wed Apr 06, 2011 9:03 am
Forum: eXpress++ Support
Topic: cueBanner / showBalloon
Replies: 12
Views: 18818

Re: cueBanner / showBalloon

When you refer to your sample, I assume you mean this?
Yeah. 8-)