How would I run a different form whenever this program is run? for example:
On the first time the program is ran, run new Form1().Show();
On the second time the program is ran, run new Form2().Show();
for example.
In my case I am running on startup so
RegistryKey rkApp = Registry.CurrentUser.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true)
i want it so Form1 is ran on the first time you open the program and whenever it runs on startup Form3 is opened