Hi guys,
I am fairly new to visualbasic. A little background from me, I've programmed before in C++, Java, and PHP so I know programming. But I am new when it comes to GUI development too.
My question is that I have a main form and I've created another small form.
In the main form I show the small form when they click a button, like this:
then the LicenseNewForm appears. The problem the I stumble upon is how I get the information from the license form to the main form when they click a button in the license form or close the license form.
The information is more then just a simple input, so I can't use a InputBox call
because the license form has 3 comboboxes and a textbox to get the input from the user and then I need to send that input to the main form.
I don't even know if it is possible, so I thought of asking about it here.
Thanks for the help in advance.
I am fairly new to visualbasic. A little background from me, I've programmed before in C++, Java, and PHP so I know programming. But I am new when it comes to GUI development too.
My question is that I have a main form and I've created another small form.
In the main form I show the small form when they click a button, like this:
Code:
Private Sub AddButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) _
Handles AddButton.Click
Dim License As LicenseNewForm = New LicenseNewForm
License.ShowDialog()
End Sub
The information is more then just a simple input, so I can't use a InputBox call
because the license form has 3 comboboxes and a textbox to get the input from the user and then I need to send that input to the main form.
I don't even know if it is possible, so I thought of asking about it here.
Thanks for the help in advance.
Comment