D
Dave Elliott
This code is used to make a field visible on a form named FEmpTotHours
It works. I would like for the same code to inform me from another form
named frmAutoPayrollReport
if there are checks to be printed from the form FEmpTotHours
I placed the same Text340 box on my form frmAutoPayrollReport as I did the
form FEmpTotHours
How can I make this work? It needs to reference the other form. ChkNoID is
on the form FEmpTotHours
Text340 is on both forms.
If Not IsNull([ChkNoID]) Then
Text340.Visible = True
Else
Text340.Visible = False
End If
It works. I would like for the same code to inform me from another form
named frmAutoPayrollReport
if there are checks to be printed from the form FEmpTotHours
I placed the same Text340 box on my form frmAutoPayrollReport as I did the
form FEmpTotHours
How can I make this work? It needs to reference the other form. ChkNoID is
on the form FEmpTotHours
Text340 is on both forms.
If Not IsNull([ChkNoID]) Then
Text340.Visible = True
Else
Text340.Visible = False
End If