I have a modal form but I need to change it to modeless. The form's purpose is to receive user input, either click OK or Cancel, then continue with further functionality in the same method. I know the sources I've found say just to change form.ShowDialog() to form.Show(), but I'm having trouble with it. When I change it to form.Show(), code continues to be hit and the dialog box doesn't pop up until the entire method has been hit. How do I open the form and handle it within the one method I have?
Sorry if this is poorly worded, still trying to grasp concepts with C#! Thanks!