newnoviceuser
Programmer
trying to print a report added the following code on event open
Private Sub Report_Open(Cancel As Integer)
If Forms![frmloaninquiry]![txtyear] > "1800" Then
Label274.Visible = False
Label233.Visible = True
Else
Label274.Visible = True
Label233.Visible = False
End If
End Sub
now it doesnt print or close the form its like it gets lost
Private Sub Report_Open(Cancel As Integer)
If Forms![frmloaninquiry]![txtyear] > "1800" Then
Label274.Visible = False
Label233.Visible = True
Else
Label274.Visible = True
Label233.Visible = False
End If
End Sub
now it doesnt print or close the form its like it gets lost