I am trying to pass font and size as a variable:
In my .ini file I have :-
def_font=Arial
def_fontsize=6
If I read these values to 2 variables for example "deffont" and "deffontsize"
I can then show the values are read by using a message:
msg>%deffont%,%deffontsize%
Result in the message box: Arial,6
All OK so far.
However, when added into the Dialog:
Code: Select all
Font=%deffont%,%deffontsize%
I also tried:
Code: Select all
Let>AllFont=%deffont%,%deffontsize%
Code: Select all
Font=%AllFont%
Code: Select all
Font=AllFont
Can anyone suggest what I am doing wrong or will MS simply not accept font and font size as an argument?
Thanks.