Difference 261 / 263

This forum is for eXpress++ general support.
Post Reply
Message
Author
Wolfgang Ciriack
Posts: 484
Joined: Wed Jan 27, 2010 10:25 pm
Location: Berlin Germany

Difference 261 / 263

#1 Post by Wolfgang Ciriack »

Hello Roger,
i found a difference with DCPUSHBUTTONXP between version 261 and 263.
The mouseover font is nil, with 261, the font does not change when the mouse is over the button.
With 263 it changes to the default (?) font ?
Compile the attached sample with 261 and 263 and you will see the difference.
Attachments
Test_druckdlg.zip
(43.38 KiB) Downloaded 643 times
_______________________
Best Regards
Wolfgang

Wolfgang Ciriack
Posts: 484
Joined: Wed Jan 27, 2010 10:25 pm
Location: Berlin Germany

Re: Difference 261 / 263

#2 Post by Wolfgang Ciriack »

Any news for that difference ?
_______________________
Best Regards
Wolfgang

User avatar
rdonnay
Site Admin
Posts: 4813
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Re: Difference 261 / 263

#3 Post by rdonnay »

I will get to this today after I finished dealing with some emergencies.
The eXpress train is coming - and it has more cars.

Wolfgang Ciriack
Posts: 484
Joined: Wed Jan 27, 2010 10:25 pm
Location: Berlin Germany

Re: Difference 261 / 263

#4 Post by Wolfgang Ciriack »

ok, thank you.
_______________________
Best Regards
Wolfgang

Wolfgang Ciriack
Posts: 484
Joined: Wed Jan 27, 2010 10:25 pm
Location: Berlin Germany

Re: Difference 261 / 263

#5 Post by Wolfgang Ciriack »

Just a reminder ;)
_______________________
Best Regards
Wolfgang

User avatar
rdonnay
Site Admin
Posts: 4813
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Re: Difference 261 / 263

#6 Post by rdonnay »

Working on it now.
The eXpress train is coming - and it has more cars.

User avatar
rdonnay
Site Admin
Posts: 4813
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Re: Difference 261 / 263

#7 Post by rdonnay »

Around line 465 of _DCXBUTT.PRG you will need to change some code to fix this problem:

Code: Select all

Was:

IF Empty(::mouseOverFont) 
  ::mouseOverFont := ::font
ENDIF

Is:

IF Empty(::mouseOverFont) .AND. Valtype(aGetListItem[cGETLIST_FONT]) == 'C'
  ::mouseOverFont := aGetListItem[cGETLIST_FONT]
ENDIF
Run BUILD19_SL1.BAT or BUILD20.BAT to rebuild DCLIPX.DLL.

This fix will be in build 264.
The eXpress train is coming - and it has more cars.

Wolfgang Ciriack
Posts: 484
Joined: Wed Jan 27, 2010 10:25 pm
Location: Berlin Germany

Re: Difference 261 / 263

#8 Post by Wolfgang Ciriack »

Thank you.
_______________________
Best Regards
Wolfgang

Post Reply