Hi!
In my startup.prg there is next class definition
The tbrButton class is to create buttons for a toolbar.
oApp.Fullscreen property may change due to user's choice from settings menu.
Is there a way to redefine the class after using oApp.Fullscreen got a new value?
-Bart
In my startup.prg there is next class definition
Code:
DEFINE CLASS tbrButton as CommandButton
HEIGHT = 26 * IIF(oApp.FullScreen,SYSMETRIC( 2 ) / 600,1)
WIDTH = 26 * IIF(oApp.FullScreen,SYSMETRIC( 1 ) / 800,1)
Fontsize = 9 * IIF(oApp.FullScreen,SYSMETRIC( 2 ) / 600,1)
caption = ''
ENDDEFINE
oApp.Fullscreen property may change due to user's choice from settings menu.
Is there a way to redefine the class after using oApp.Fullscreen got a new value?
-Bart