Printable View
Delete this please.
Use radiobuttons
Quote: Originally Posted by Jason Use radiobuttons I never thought of that. Thank you. Is this the correct code? Code: If RadioButton1.Checked Then Msg("You have chosen 6,500 NX") End If End Sub
If RadioButton1.Checked Then Msg("You have chosen 6,500 NX") End If End Sub
Quote: Originally Posted by SofaKingH4rd I never thought of that. Thank you. Is this the correct code? Code: If RadioButton1.Checked Then Msg("You have chosen 6,500 NX") End If End Sub If RadioButton1.Checked = true Then 'do anything what ya want. End If End Sub
Quote: Originally Posted by Exquizyth If RadioButton1.Checked = true Then 'do anything what ya want. End If End Sub Yeah, I entered it wrong above, I knew it :P If RadioButton1.Checked = True Then MsgBox("Write any thing here") End If End Sub
"Checked" is a boolean anyway, so your original code was right anyway.