VB.NET app question
I have created myself a simple user control ( consisting of a few
edit boxes etc ). I use this user control on several different
forms within my application. I simply create instances of my
user control and assign them as children of my various parent
form(s).
My question - what is the best way to call a user defined
function/sub in the parent form from my child user control ?
I do not always need to do this - it depends on the type of
parent form in which I have embedded my child control. But sometimes
I need to tell my parent form that there has been a status
change within its child control.
Any ideas on best practice?