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.
Difference 261 / 263
-
- Posts: 484
- Joined: Wed Jan 27, 2010 10:25 pm
- Location: Berlin Germany
Difference 261 / 263
- Attachments
-
- Test_druckdlg.zip
- (43.38 KiB) Downloaded 645 times
_______________________
Best Regards
Wolfgang
Best Regards
Wolfgang
-
- Posts: 484
- Joined: Wed Jan 27, 2010 10:25 pm
- Location: Berlin Germany
Re: Difference 261 / 263
Any news for that difference ?
_______________________
Best Regards
Wolfgang
Best Regards
Wolfgang
Re: Difference 261 / 263
I will get to this today after I finished dealing with some emergencies.
The eXpress train is coming - and it has more cars.
-
- Posts: 484
- Joined: Wed Jan 27, 2010 10:25 pm
- Location: Berlin Germany
-
- Posts: 484
- Joined: Wed Jan 27, 2010 10:25 pm
- Location: Berlin Germany
Re: Difference 261 / 263
Around line 465 of _DCXBUTT.PRG you will need to change some code to fix this problem:
Run BUILD19_SL1.BAT or BUILD20.BAT to rebuild DCLIPX.DLL.
This fix will be in build 264.
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
This fix will be in build 264.
The eXpress train is coming - and it has more cars.
-
- Posts: 484
- Joined: Wed Jan 27, 2010 10:25 pm
- Location: Berlin Germany