C
chook.harel
Maybe its not suppose to be in this group,
but i'm programming CF, so maybe it is
I'm trying to find out a good way of transfering data from one form to
the next one
and how is the change in forms occurs...
I tried
frmSales frmSales = new frmSales();
frmSales.Activate();
frmSales.Show();
in the form that starts (in the program.cs class)
frmWelcomeScreen frmWelcome = new frmWelcomeScreen();
Application.Run(frmWelcome);
and I have 2 questions.
1. how can I use the frmwelcome contianers from the frmsales..
2. how do I close a form when i move to the next one,
so that when the user clicks the X button.. It won't return to the old
one,
and will exit the program.
but i'm programming CF, so maybe it is
I'm trying to find out a good way of transfering data from one form to
the next one
and how is the change in forms occurs...
I tried
frmSales frmSales = new frmSales();
frmSales.Activate();
frmSales.Show();
in the form that starts (in the program.cs class)
frmWelcomeScreen frmWelcome = new frmWelcomeScreen();
Application.Run(frmWelcome);
and I have 2 questions.
1. how can I use the frmwelcome contianers from the frmsales..
2. how do I close a form when i move to the next one,
so that when the user clicks the X button.. It won't return to the old
one,
and will exit the program.