G
Guest
I am wondering if anyone has done something like this? I want to find a label
based on the passed in information. It would be awesome to find something
like this:
private void myvoid (int i)
{
string lbl = "label" + i;
Label mylabel = (Label)lbl;
lbl.Text = "I have found the label on my form by this method!";
}
Anyone got a method?
Thanks!
based on the passed in information. It would be awesome to find something
like this:
private void myvoid (int i)
{
string lbl = "label" + i;
Label mylabel = (Label)lbl;
lbl.Text = "I have found the label on my form by this method!";
}
Anyone got a method?
Thanks!