Ooops... Forgot code Sample

J

Jim

Here's the Code Sample from my previous post!

My appologies,
Jim

=====================================
Private Sub ExpiredHose_AfterUpdate()
If ExpiredHose.Value = True Then
InService.Enabled = False
Else
InService.Enabled = True
End If
End Sub

Private Sub InService_AfterUpdate()
If InService.Value = True Then
ExpiredHose.Enabled = False
Else
ExpiredHose.Enabled = True
End If
End Sub
=====================================
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top