Hi All,
How do i get user choice Radio button text from multiple radio button, When i save as word document.
Below code is what i did:
"Food :" & ComboBox1.Text & ", Quantity :" & txtCountFood & vbNewLine &
But instead of using ComboBox (as above code) i want to Use RadioButton1, RadioButton2, RadioButton3 :
"Food :" If RadioButton1.Checked = True Then
RadioButton1.Checked = "Tomato, Quantity :" & txtCountFood & vbNewLine
ElseIf RadioButton2.Checked = True Then
RadioButton1.Checked = "Tomato, Quantity :" & txtCountFood & vbNewLine
ElseIf RadioButton3.Checked = True Then
RadioButton1.Checked = "Tomato, Quantity :" & txtCountFood & vbNewLine
EndIf
Nothing, came out of it except : Food :
Thank You.