Multiple forms
I've just started using Visual Studio 2005, and what i want to do is to open a new form when a button i pressed.
I have one form that only contains a button. When I press this button, I want to open another form in the same project.
What code do I have to make in the buttons _Click (eventhandler) method in order to fix this?
It should be really easy, and I guess it is, but I just cant figure it out.
I was thinking about form2.show() or form2.open(), but none of these work...:(
|