How do you link one form (say an OptionsDialog) to modify the Main Form
i.e. Choose options in the OptionsDialog and make them modify the Main Form
Like a settings dialog...
How do you link one form (say an OptionsDialog) to modify the Main Form
i.e. Choose options in the OptionsDialog and make them modify the Main Form
Like a settings dialog...
link one form's controls to modify the main form
Gizmoguy
you create separate form and call it. then check it's settings and modify main form accordingly
hope this helps
Jean-Jean
namnguyen
g.ursula
Create a delegate on the options form and in your main form, hook it to a method on the main form. Then you can call your method in the options dialog and it will call the method in the main form, by calling the delegate.