Question:
In .NET do you have any criteria that qualifies a certain form to be the startup form?
Example:
For example, if I have a basic calculator program and it has 3 forms namely frmConfig, frmCalculator and frmProfile.
frmConfig
- The settings page, includes whether I should automatically round off or out put the whole decimals, etc.frmCalculator
- The main page, the calculator itself where you can do all the calculations that you want.frmProfile
- The login page, you can see the history of your calculations here.
Notes:
- From that 3 different kinds of forms how do I properly choose the startup form?
Does it mean that the startup form should
always
be the first form to see when the application is running?Because for example I can make the frmConfig as the startup form then on OnLoad event of it it will hide itself then open the frmCalculator because frmCalculator depends on frmConfig's default setting.
To make this question not broad I am looking for the most common way of setting up the startup form, maybe there is a standard way?