I am a non professionnal programmer in FWH from source code
Can anyone tell me how I can make bigger the characters displayed within the windows. The characters to print are no problem.
I am a non professionnal programmer in FWH from source code
Can anyone tell me how I can make bigger the characters displayed within the windows. The characters to print are no problem.
welcome to this forum
you have to define the font first and delete the object font afterwards
DEFINE FONT AFONT NAME "Tahoma" SIZE 0,-14 // this is a sample
@ 200,05 GET xxx VAR yyyy OF www PIXEL SIZE 90,30 COLOR CLR_HBLUE,CLR_WHITE FONT afont
You can add a font to every control (get, say etc...)
after activating the window, at end
afont:end()
Hth
Richard
Thank you Richard, It works very good for says and gets but how can I do work it for listbox browses?
DEFINE FONT oFONT NAME "Tahoma" SIZE 0,-14 // this is a sample
@ 1,1 LISTBOX ... FONT oFont
Regards,
James
many thanks to James Bott
best regards and a happy New Year
José