03-12-2007, 01:54 PM
Hello, Im pretty new to VB, and im trying to learn it.
Im trying to make all the Selection's (like male/female, pick character, Class selection) as pictures instead of those nasty "lists" etc...
So my question is: How can i set the Class selection as Option buttons?
This is the current one as a ComboBox but i need it in OptionButtons:
Im trying to make all the Selection's (like male/female, pick character, Class selection) as pictures instead of those nasty "lists" etc...
So my question is: How can i set the Class selection as Option buttons?
This is the current one as a ComboBox but i need it in OptionButtons:
Code:
Private Sub cmbClass_Click()
lblHP.Caption = STR(Class(cmbClass.ListIndex).HP)
lblMP.Caption = STR(Class(cmbClass.ListIndex).MP)
lblSP.Caption = STR(Class(cmbClass.ListIndex).SP)
lblSTR.Caption = STR(Class(cmbClass.ListIndex).STR)
lblDEF.Caption = STR(Class(cmbClass.ListIndex).DEF)
lblSPEED.Caption = STR(Class(cmbClass.ListIndex).speed)
lblMAGI.Caption = STR(Class(cmbClass.ListIndex).MAGI)
lblClassDesc.Caption = Class(cmbClass.ListIndex).desc