I have a small assignment to finish for school, but can directly apply it to a little app I want to write for work.
I am creating two forms in Visual Basic studio, and want to know how to invoke one from the other. Specifically:
First window is main running window. What function do I need to add to a button to close the window?
Also, there is a blank text field that is in the first window. When a user types in something, then clicks on a second button (other than the close) it is supposed to instantiate the second window. So I need to make a constructor that passes the parameter of whatever is stored in that text field, and sets the label and title of the second window from that parameter.
Not asking for completed code, just where I can read about the methods I need to apply?