W
Wade
ASP.NET has the ability to find a control in the control namespace (part of
System.Web.UI.Control):
Dim myControl1 As Control = FindControl("TextBox2")
Does the .NET compact framework have an equivalent way to get a control? I
know I can loop through the controls in the form, but I don't want to do
that as there could be a lot of controls. Since I know the name of the
control, I'd rather just refer to it directly.
Thanks!
Wade
System.Web.UI.Control):
Dim myControl1 As Control = FindControl("TextBox2")
Does the .NET compact framework have an equivalent way to get a control? I
know I can loop through the controls in the form, but I don't want to do
that as there could be a lot of controls. Since I know the name of the
control, I'd rather just refer to it directly.
Thanks!
Wade