Can someone tell me why the following works:
But this does not:
or even:
The last two error with object not set
Thnx
VB.NET:
Me.rad12Months.Checked = True
But this does not:
VB.NET:
Me.Controls.Item("rad12Months").Checked = True
or even:
VB.NET:
Messagebox.Show(Me.Controls.Item("rad12Months").GetType.ToString)
The last two error with object not set
Thnx