rikklaney1
Registered User.
- Local time
- Today, 15:12
- Joined
- Nov 20, 2014
- Messages
- 157
Ok, I'm stumped!
I have this in my timer event
If Me.chkdone = True Then
Me.Command170.Visible = False
Me.Command171.Visible = True
Else
Me.Command170.Visible = True
Me.Command171.Visible = False
End If
and it hangs on the first line saying it can't find the control. I can rem out these lines and switch the checkbox from the table and watch it change on the form but when this is active it says it can't find the control. Iv'e tried putting this in the afterupdate for me.chkdone and I get nothing. Any ideas what I've got wrong? It runs a compile without any errors and I'm just stumped.
I have this in my timer event
If Me.chkdone = True Then
Me.Command170.Visible = False
Me.Command171.Visible = True
Else
Me.Command170.Visible = True
Me.Command171.Visible = False
End If
and it hangs on the first line saying it can't find the control. I can rem out these lines and switch the checkbox from the table and watch it change on the form but when this is active it says it can't find the control. Iv'e tried putting this in the afterupdate for me.chkdone and I get nothing. Any ideas what I've got wrong? It runs a compile without any errors and I'm just stumped.