i have a form namee Form1. and i have a class myclass.now what i need is i want to modify controls of Form1 from myclass. please notice that Controls in Form1 are runtime user controls. please help me for that. Thanx
Access form controls from Class in c#
Collapse
X
-
Tags: None
-
-
The controls are properties/members of that form. You can't get to them unless you can get to the form. The only things you can get without having an instance are statics but then those do not belong to an instance either ...Originally posted by SimhachalamNaid ujust i need to access the controls on the form.so i need to first access that form.Comment
Comment