hi
in my C# program i Moves from one screen to another like this:
Form G = new Screen1();
G.ShowDialog();
G.Dispose();
G.Close();
i move from screen1 --> screen2 --> screen3 --> screen4
when i in screen4 and i want to go back to screen1 - if i'll write this.close()
i'll go only to screen3
how to go back from screen4 to screen1
thank's in advance