I have a user control which assembles a string based on two text fields (first name and last name) and I'd like to have another label use this to say something like "Your name is FIRSTNAME LASTNAME".
Although I can see the public string the user control outputs, I can't find an event which specifies when the user control has new inputs.
It'd be great if I could do something like...
private void userControl_Update()
{
lblYourName.Text = String.Format("Your name is {0}", userControl.name);
}
But I have no idea how to do this.
I use VB2012 with visual c# and forms.
Thanks for any help.