R
Ronald S. Cook
If I have the following in a master user control...
Protected Overridable Sub CaptureFields()
DoThis...
End Sub
And then this in an inherited user control...
Protected Overrides Sub CaptureFields()
DoThat...
End Sub
What happens?
Will "DoThis" execute and then "DoThat"? Will "DoThis" never execute? How
does it work (i.e. how do they work together if they do?)
Thanks for any response.
Protected Overridable Sub CaptureFields()
DoThis...
End Sub
And then this in an inherited user control...
Protected Overrides Sub CaptureFields()
DoThat...
End Sub
What happens?
Will "DoThis" execute and then "DoThat"? Will "DoThis" never execute? How
does it work (i.e. how do they work together if they do?)
Thanks for any response.