Paul Cooke
Registered User.
- Local time
- Today, 12:41
- Joined
- Oct 12, 2001
- Messages
- 288
I have entered some code on after update of field "Conwork" which enables the field below "disposal" to be enabled. After entering information the "disposal" field i press a button to save and print a report. before the report prints a window appears call "disposal1" if I enter any information in this window it is printed on the report. If i simply press ok or cancel this window the report is printed but the "disposal" field is blank.
The Code I have used is in the After Update selection on "Conwork" and is follows:
Private Sub Conwork_AfterUpdate()
If Me.Conwork = "No" Then
Me.disposal.Enabled = True
Else: Me.disposal.Enabled = False
End If
End Sub
Any help would be gratefully recieved!!
The Code I have used is in the After Update selection on "Conwork" and is follows:
Private Sub Conwork_AfterUpdate()
If Me.Conwork = "No" Then
Me.disposal.Enabled = True
Else: Me.disposal.Enabled = False
End If
End Sub
Any help would be gratefully recieved!!