Click to See Complete Forum and Search --> : Making a modelless dialog, newbie question


Username555
February 3rd, 2008, 09:07 PM
I'd like to make a modeless form called from another form
(that is, I have two forms and one will call the other)

What property should I turn on/off to make this work ?
Thanks

TheCPUWizard
February 3rd, 2008, 09:21 PM
Just create a Form, and call Show().


MyFormClass newForm = new MyFormClass()
newform.Show()


For them to communicate, you simply need to pass a reference from one form to the other... Or pass a reference a single instance of some other class...