Execution sequence

G

Guest

What are the default execution sequence of the following vb in running a
vb.net application? I want to know when MySettings are populated with values
when I run the application.

Application.Designer.vb
AssemblyInfo.vb
Resource.Designer.vb
Settings.Designer.vb
Form1.vb
Form1.Designer.vb
NorthwindDataSet.Designer.vb

The application startup form is Form1.
 
M

Mr. Arnold

Peter said:
What are the default execution sequence of the following vb in running a
vb.net application? I want to know when MySettings are populated with
values
when I run the application.

Application.Designer.vb
AssemblyInfo.vb
Resource.Designer.vb
Settings.Designer.vb
Form1.vb
Form1.Designer.vb
NorthwindDataSet.Designer.vb

The application startup form is Form1.

I guess the best that you can be told is put debug breakpoints on the code
and find out what the sequence is during execution.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top