Hi,
Is there a way to find a control by tag text without looping through the controls of the container?
I usually fidn controls by ID/name by:
But can we find a control by tag in such method?
Thanks.
Is there a way to find a control by tag text without looping through the controls of the container?
I usually fidn controls by ID/name by:
Code:
Dim Thiscontrol As Control =MyPanel.Controls.Find("TXTbox_CaseID", True)(0)
Thanks.