Dgavilanes
Registered User.
- Local time
- Today, 08:04
- Joined
- Jun 25, 2001
- Messages
- 109
Hi all,
I have this code that it does not work just the way I would like to.
Here is the problem, Is a cbx in a continous form, when I select the value "Pending Affidavit" a "Noyears" field is visible, unfortunaly it does the same for any other value selected
I know it should also reference the records Id No. But don't know how
Any help would be greatly appreciated
thanks
Dennis
Private Sub Form_Current()
Call CbxCode_AfterUpdate
End Sub
Private Sub CbxCode_AfterUpdate()
Me.noyears.Visible = Me.CbxCode.Column(1) = "Pending Affidavit"
End Sub
I have this code that it does not work just the way I would like to.
Here is the problem, Is a cbx in a continous form, when I select the value "Pending Affidavit" a "Noyears" field is visible, unfortunaly it does the same for any other value selected
I know it should also reference the records Id No. But don't know how
Any help would be greatly appreciated
thanks
Dennis
Private Sub Form_Current()
Call CbxCode_AfterUpdate
End Sub
Private Sub CbxCode_AfterUpdate()
Me.noyears.Visible = Me.CbxCode.Column(1) = "Pending Affidavit"
End Sub