Search found 107 matches

by hz_scotty
Wed May 12, 2021 2:00 pm
Forum: eXpress++ Support
Topic: DCPushButtonXP is slow if I use the Hide option
Replies: 26
Views: 20450

Re: DCPushButtonXP is slow if I use the Hide option

Code: Select all

...oXbp:parent:Minimized ))  <------
should be

Code: Select all

...oXbp:parent:Minimized )
correct ?
by hz_scotty
Sat May 08, 2021 1:15 pm
Forum: eXpress++ Support
Topic: DCPushButtonXP is slow if I use the Hide option
Replies: 26
Views: 20450

Re: DCPushButtonXP is slow if I use the Hide option

In _dcxbutt.prg I occasionally get an error at about line 703 "IF! :: isShadowOnMouseOver .OR. :: mouseMode == 1" where ":: isShadowOnMouseOver = NIL". No idea why. As a workaround, I have added these lines in front of the relevant point. <code> IF Valtype (:: isShadowOnMouseOver) == 'U' :: isShadow...
by hz_scotty
Thu Mar 18, 2021 4:24 pm
Forum: eXpress++ Support
Topic: Display a window with a given offset
Replies: 3
Views: 6611

Re: Display a window with a given offset

Hello!
Can you post the changes from the dc_msgbox.prg for modified to work off-center, and offset
Please :pray:
Thank you
by hz_scotty
Tue Mar 09, 2021 11:36 am
Forum: eXpress++ Support
Topic: eXpress ++ Version
Replies: 3
Views: 3936

Re: eXpress ++ Version

Is there a preview of the features on version 268 ;)
by hz_scotty
Sat Feb 06, 2021 11:41 am
Forum: eXpress++ Support
Topic: Wrong Return Value in DC_TimeToSec
Replies: 2
Views: 4073

Wrong Return Value in DC_TimeToSec

Hi Roger!
I have found a wrong return value in Function DC_TimeToSec() in _dccalen.prg

was: wrong!
RETURN (nHours * 60 * 24) + (nMinutes * 60) + nSeconds

is: right!
RETURN (nHours * 60 * 60) + (nMinutes * 60) + nSeconds

please edit for the future !
;)
by hz_scotty
Sat Feb 08, 2020 1:26 pm
Forum: eXpress++ Support
Topic: DcPushButtonXP .. DelayAction Reacts by pressing Enter
Replies: 8
Views: 11024

Re: DcPushButtonXP .. DelayAction Reacts by pressing Enter

Line 1560 in _dcxbutt.prg not 150 :clap:
by hz_scotty
Mon Jul 22, 2019 1:02 pm
Forum: eXpress++ Support
Topic: DC_Workarea2excel number format
Replies: 10
Views: 17030

Re: DC_Workarea2excel number format

:clap: :clap: :clap: thank you
by hz_scotty
Mon Jul 22, 2019 8:52 am
Forum: eXpress++ Support
Topic: DC_Workarea2excel number format
Replies: 10
Views: 17030

Re: DC_Workarea2excel number format

DC_SQLSTATEMENT Line 3248 :whistle:
by hz_scotty
Mon Jul 22, 2019 8:37 am
Forum: eXpress++ Support
Topic: DC_Workarea2excel number format
Replies: 10
Views: 17030

Re: DC_Workarea2excel number format

with the new _dcfunct.prg there is a unresolved external symbol DC_GETSQLSTATMENT
by rebuild.

:think:
by hz_scotty
Fri Jun 28, 2019 11:43 pm
Forum: eXpress++ Support
Topic: PushButton can perform 2 diferent actions?
Replies: 14
Views: 21061

Re: PushButton can perform 2 diferent actions?

Now it works!
Thank you