Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
You can raise the event from within the control by calling Me.OnValidating() or Me.OnValidated(). However, those methods are protected, so you will have to create your own textbox control and create public methods that call the protected methods. Or you can use reflection to get the MethodInfo and invoke it on the control. Reflection is slow and requires a good bit of code to execute a single method, but you can do it from anywhere.
|