H
Harry Simpson
I'm trying to programmatically set the Checked property of a menu item to
true. I always get an "internal error" when i try to execute the following
code
Private Sub SetConnectedPic(ByVal isconnected As Boolean)
Try
If isconnected = True Then
MenuItem2.Checked = True
Else
MenuItem2.Checked = False
End If
Catch ex As Exception
End Try
End Sub
Can this be set during runtime? Any ideas?
TIA
Harry
true. I always get an "internal error" when i try to execute the following
code
Private Sub SetConnectedPic(ByVal isconnected As Boolean)
Try
If isconnected = True Then
MenuItem2.Checked = True
Else
MenuItem2.Checked = False
End If
Catch ex As Exception
End Try
End Sub
Can this be set during runtime? Any ideas?
TIA
Harry