Hi
I have the following code in a Control I made:
Public Property Let ShowRecNo(Show As Boolean)
If Show Or Not Show Then
txtRec.Visible = Show
End If
PropertyChanged ShowRecNo
End Property
Before it goes through the line saying "txtrec.visible = show", txtrec.visible is false and show is true.
Then, when it goes through it, txtrec.visible does not chnage.
Any ideas?
thanks
sergio
I have the following code in a Control I made:
Public Property Let ShowRecNo(Show As Boolean)
If Show Or Not Show Then
txtRec.Visible = Show
End If
PropertyChanged ShowRecNo
End Property
Before it goes through the line saying "txtrec.visible = show", txtrec.visible is false and show is true.
Then, when it goes through it, txtrec.visible does not chnage.
Any ideas?
thanks
sergio