J
JohnSouth
Hi
In a c# Windows Forms application (not asp.net) if I've opened 2 or
more non-modal forms using code like:
FormTypeA aForm = new FormTypeA();
aForm .Show();
FormTypeB bForm = new FormTypeB();
bForm .Show();
How do I update a control (e.g. label) in aForm from code in bForm?
And will the update be seen immediately, or on activation?
John South
www.wherecanwego.com
Pangbourne UK
In a c# Windows Forms application (not asp.net) if I've opened 2 or
more non-modal forms using code like:
FormTypeA aForm = new FormTypeA();
aForm .Show();
FormTypeB bForm = new FormTypeB();
bForm .Show();
How do I update a control (e.g. label) in aForm from code in bForm?
And will the update be seen immediately, or on activation?
John South
www.wherecanwego.com
Pangbourne UK