I've got two forms, the mainform which opens up a dialog box that has a text box in it. How can I pass the text from the textbox back to the mainform? I've tried alot of different methods but I think I'm missing something simple. Thanks for any help.
|
|
|
|
|
|
|
The dialog box still exists after it closes. So you can, from the main form, do something like this:
This assumes your dialog box is If you don't want to make |
|||
|
|
|
If you use the MVC pattern, you create the model object (container for your data) and pass to the text box to fill in the text value itself. When the dialog is closed, just read the value from the model and put it wherever you need it. |
||
|
|
