I have a project of two Winform and I want to run the application by alternate form. In program.cs file there is:
Application.Run(new Form1()); That means the Form1 will execute as main form or startup form of application. Is it possible to change it programmatically by some time limit or days limit? I mean after two days it will execute Form2 as startup form. Like below:
Application.Run(new Form2()); Is it possible?
Form(possibly using a text file). Before loading the form, read from the text file and switch the form to load accordingly.