Is it possible to change the font in a dialog box?
I want to insert a capital delta sign in the middle of some text,
along the lines of the code below:-
SlopeSVP= (4098*(0.6108*EXP((17.27*airtemp)/(airtemp+237.3))))/((airtemp+237.3)^2)
textstring="Slope of Vapour pressure curve ("
'change font to "Symbol", 8
textstring=textstring+CHR$(068)
'change font back to "MS Sans Serif", 8
textstring=textstring+") at"+STR$(airtemp)+CHR$(0186)+"C = "+FORMAT$(SlopeSVP,"0.000")
CONTROL SET TEXT hDlg, %IDC_LABEL15, textstring
I have this feeling that I am going to fail on this one.
Any ideas??
Iain Johnstone
------------------
I want to insert a capital delta sign in the middle of some text,
along the lines of the code below:-
SlopeSVP= (4098*(0.6108*EXP((17.27*airtemp)/(airtemp+237.3))))/((airtemp+237.3)^2)
textstring="Slope of Vapour pressure curve ("
'change font to "Symbol", 8
textstring=textstring+CHR$(068)
'change font back to "MS Sans Serif", 8
textstring=textstring+") at"+STR$(airtemp)+CHR$(0186)+"C = "+FORMAT$(SlopeSVP,"0.000")
CONTROL SET TEXT hDlg, %IDC_LABEL15, textstring
I have this feeling that I am going to fail on this one.
Any ideas??
Iain Johnstone
------------------
Comment