Let's say I have 5 different forms. All of them have a field called Sql. Where user can go and type there SQL queries. Now, since the Sql field is not big enough on all the forms (due to less screen space), I provided a context menu on this field, where user can right click and select Large, which will open a new form with only one textbox and ok, cancel buttons. Now user can go and enter there SQL query easily here.
The question is, since this can be opened from all 5 forms, which is the best method to return the value from this SQL form, to the form which has opened the large SQL form. Remember, you can only open it for one form at a time because its opened as ShowDialog.
