MarcMendel
Registered User.
- Local time
- Today, 09:52
- Joined
- Jun 10, 2013
- Messages
- 11
I have a form with a checkbox (Is a Work Permit required?)and a date field (Work Permit Expiration date).  I want the date field to be dimmed when the form opens.  I want the focus to go to the checkbox first.  The checkbox asks whether a youth is required to have a Work Permit.  if the user checks the box (the youth needs a Work Permit), then I want the date field to be undimmed and available to the user to put in the Work Permit Expiration date.
I've tried using the checkbox afterupdate property to enable/disable the Work Permit Expiration date field, but no luck. What am I doing wrong? How do I make this work?
Thank you in advance!
Private Sub WorkPermit_AfterUpdate()
If Me.WorkPermit.Value = -1 Then
Me.WorkPermitExpiration.Enabled = True
Else: Me.WorkPermitExpiration.Enabled = False
End If
End Sub
 I've tried using the checkbox afterupdate property to enable/disable the Work Permit Expiration date field, but no luck. What am I doing wrong? How do I make this work?
Thank you in advance!
Private Sub WorkPermit_AfterUpdate()
If Me.WorkPermit.Value = -1 Then
Me.WorkPermitExpiration.Enabled = True
Else: Me.WorkPermitExpiration.Enabled = False
End If
End Sub
 
	 
 
		 
 
		 
   
 
		 
 
		 
 
		