J
Jon Cosby
I have a form that needs to take input from another form. Problem is I can't
see any way to pause the sequence in the main form to wait for input from
the second form.
prompt = new AddressPrompt();
prompt.Show();
// Wait for click event in prompt
if (prompt.okay)
address[index] = prompt.addressInput;
Is there any way to do this? I've thought about creating a public method in
the main form, but I don't think there's a way to reference the open window.
Jon Cosby
see any way to pause the sequence in the main form to wait for input from
the second form.
prompt = new AddressPrompt();
prompt.Show();
// Wait for click event in prompt
if (prompt.okay)
address[index] = prompt.addressInput;
Is there any way to do this? I've thought about creating a public method in
the main form, but I don't think there's a way to reference the open window.
Jon Cosby