[RESOLVED] Control.Validated
Is there anyway to check if a Control has been validated yet?
I have some code that I want to run when the Selected of a TabControl fires off.
The thing is, that I have TabPages added to the TabControl at the beginning of runtime, which then triggers the Selected event before the control is completely existent, which means the Sub I have that also happens to reference the control during that event errors out because there is technically not an instance of the control completely finished building so it says I don't have a correct reference set to that object.
So basically, I want to be able to check in the Sub if the control has been Validated, or maybe even created or whatever is going on.