Hi all,
I'm working on this game that doesn't require a main form. The flow structure is sorta like this:
[ul]
[li]Show SelectProfile form[/li]
[li]if new profile selected, show CreateProfile form[/li]
[li]if profile is in the middile of a scenario, ResumeScenario[/li]
[li]otherwise, call StartNewScenario[/li]
[/ul]
At the moment, I've got all my forms out of the Auto-Create box, except for one, which is invisible, and contains only a Timer control that kicks in after 500ms and executes the code as above.
My question is: Is there a cleaner way of doing this? I would prefer not to need to have this invisible form at all, and have my program go straight into my code as above which creates and shows all the necessary forms.
I'm working on this game that doesn't require a main form. The flow structure is sorta like this:
[ul]
[li]Show SelectProfile form[/li]
[li]if new profile selected, show CreateProfile form[/li]
[li]if profile is in the middile of a scenario, ResumeScenario[/li]
[li]otherwise, call StartNewScenario[/li]
[/ul]
At the moment, I've got all my forms out of the Auto-Create box, except for one, which is invisible, and contains only a Timer control that kicks in after 500ms and executes the code as above.
My question is: Is there a cleaner way of doing this? I would prefer not to need to have this invisible form at all, and have my program go straight into my code as above which creates and shows all the necessary forms.