D
Donald Smith
Hey,
I have 2 forms. On the first form, there is a function that displays a lot
of data, with a lot of values, that I store in variables. So what I want to
do is use the info that I store in variables on the first form, and insert
it into the second form. Like this... (Not my real code)
Form1:
int Filter;
Filter += 1;
Form2:
this.Text = Filter.ToString();
Any help? It's really holding me back in my project.
-Donald
I have 2 forms. On the first form, there is a function that displays a lot
of data, with a lot of values, that I store in variables. So what I want to
do is use the info that I store in variables on the first form, and insert
it into the second form. Like this... (Not my real code)
Form1:
int Filter;
Filter += 1;
Form2:
this.Text = Filter.ToString();
Any help? It's really holding me back in my project.
-Donald