working between multiple forms..
I don't know if this falls in the same catagory as passing data between forms so I thought I would ask.
What I am trying to do..
I have 2 forms in my application.
Basedo n a method execution in FormClassA I would like to change the position of a toolbar control I have on FormClassB.
Can someone please direct / assist me with this??
Thanks gang,
Bob
Answers (1)
0
Hi
Use it this way:
private void Move() { // Method in FormClassA instance.
Point p = formClassB.Location;
p.X += 20;
p.Y += 20;
formClassB.Location = p;
}
Simon