Visual Basic help: Fontsize changing using combo box

Started by
1 comment, last by Visbas 22 years, 4 months ago
I need some help with Visual Basic Homework: I have this text box called txtText and I have this combo box called cmbSize that allows you to select font sizes, like in Word. How do I change the text size when the user selects a size from the combo box? I know it goes something like txtText.text = cmbSize.index or something.
Advertisement
If I am remembering this correcly, it''s something like

txtText.font.size = val(cmbSize.list(listIndex))

in the combobox1_change area (or something like that), type

text1.fontsize = val(combo1.list(combo1.listindex))

or

text1.fontsize = val(combo1.text)

This topic is closed to new replies.

Advertisement