How do I change control properties outside of the main form class?
I have a function that takes a form object as a parameter
public MyFunc(Form f)
{
// I want to do something like this
f.lblMylabel.txt = "foo"
}
How do I reference the forms controls and change property values?