Vb express / visual studio - is it possible to run / debug a single form in only a multi-form application?

I have a vb application composed of multiple winForms and code files. Is it possible to run / debug just one form without running the whole application?

To be more specific, one of the forms in my application is a settings form where the user sets the desired options. These parameters are read / written to the xml file. Is it possible to debug just this form (and not the entire program) to make sure the read / write went well if everything is displayed correctly ...?

If I am thinking about this the wrong way, can you point me in the right direction?

By the way, I'm using visual basic express visual studio.

+2


a source to share


1 answer


Of course, just change the project launch form so that the form is loaded first. Saves you the hassle of having to click a button to show a form, albeit a small savings. Project + Properties, Application, change the "Startup" setting.



+3


a source







All Articles