when I call Application.Run() on a form, this command halts the program until the form is closed, it seems. Is there another command I can use to create the form without halting the program? Thanks
when I call Application.Run() on a form, this command halts the program until the
Share
When you call
Run, it doesn’t halt the program. It transfers control to the Windows Forms main message loop. Any further code you want to execute should be run either in a separate thread or in event handlers such as in the Form_Load.