I do have two forms
in form1, when button is clicked, it opens form2
where the user has to fill in certain textboxes
after the 'done' button is clicked in form2
the values from textbox should be read( I do have properties to 'set' the values in second form)
and if any of the textboxes are empty, a message box should popup and remind them to fill the text boxes
but the
Form 2 should stay intact after the user closes the messagebox
incase every textbox is filled, the form2 should close and return a concatenated string to form1
this is my functionality.
my problem here is after messageboxes are closed by the user, I am unable to find a statement to keep form2 open,
it right away executes the close() method for the form2.
can someone help me in this regard.