hi
how to change the font size in vb6
Printable View
hi
how to change the font size in vb6
VB6 questions should be asked in the VB6 Forum.
What do you want to change the font size for? Controls that can display text has a Font object property.Code:Text1.Font.Size = 12
Ask a mod to move this to the appropriate forum.
Thread moved from 'VB.Net' (VB2002 and later) forum to 'VB6 and Earlier' forum
NameOfYourObject.Font.Size = WriteSizeHere
You can also see "Font" in the properties of your object (that can be a text box, label or anything else).