PSU_Justin
Newcomer
If I am working with two forms and I want to click a radiobutton on Form 2, how can I get that radiobutton control to place a numeric value into a textbox on Form 1?
I've tried this code unsuccessfully (only with a button instead of a radiobutton).
I've tried this code unsuccessfully (only with a button instead of a radiobutton).
Visual Basic:
Public Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Dim main As New Form1()
Me.Close()
main.nbox.Text = n
End Sub