C
Carol Shu
Hi, all, I'm trying to set the form's OnCurrent event, if the field "Paid" is
YES, then Due Date controls visible property to No, i guess i must did
something wrong, because it won't work, thank you. Here's my code:
Private Sub Form_Current()
if me! [Paid] = true then
Me![Due Date].Visible = False
Else
Me![Due Date].Visible = True
End If
End Sub
YES, then Due Date controls visible property to No, i guess i must did
something wrong, because it won't work, thank you. Here's my code:
Private Sub Form_Current()
if me! [Paid] = true then
Me![Due Date].Visible = False
Else
Me![Due Date].Visible = True
End If
End Sub