i am writing a program (in delphi 7) so that when you log on to the system, you will be redirected to another form where the main menu is. these are both separate forms and i am wanting to know how to load it automatically.
please help!
thanks!
14 March 2010.
i am writing a program (in delphi 7) so that when you log on to the system, you will be redirected to another form where the main menu is. these are both separate forms and i am wanting to know how to load it automatically.
please help!
thanks!
Procedure SwitchForms();
Begin
Form1.Hide;
Form2.Show;
End;
Basically.
If you want to have different variables to be shared, just store them as variables in the unit that declares this process