Greetins,
I have a form that has several tabs on it. Each tab has a different sub form. The tabs correspond to different work groups and some work groups should not be able to enter their data until another work group has populated their data. I need to referrence a control on the Material specialists form before the Quality control folks can enter data on their form. What is the best way to do this. See my code below.
If IsNull(Parent![subfrm_MRRStatus_MRRInfo].[txt_MRRNo]) Then
MsgBox "This MRR has not yet been accepted into the MRR Status database." & chr(13) & "Therefore it can not be assigned to a QC person at this time." & Chr(13) & "Notify the Material Specialist and have them Add this MRR to the system" & Chr(13) & "by clicking on the Add button in the MS Data tab.", vbOKOnly + vbCritical, "MRR NOT YET ADDED TO SYSTEM"
Exit Sub
End If
I have a form that has several tabs on it. Each tab has a different sub form. The tabs correspond to different work groups and some work groups should not be able to enter their data until another work group has populated their data. I need to referrence a control on the Material specialists form before the Quality control folks can enter data on their form. What is the best way to do this. See my code below.
If IsNull(Parent![subfrm_MRRStatus_MRRInfo].[txt_MRRNo]) Then
MsgBox "This MRR has not yet been accepted into the MRR Status database." & chr(13) & "Therefore it can not be assigned to a QC person at this time." & Chr(13) & "Notify the Material Specialist and have them Add this MRR to the system" & Chr(13) & "by clicking on the Add button in the MS Data tab.", vbOKOnly + vbCritical, "MRR NOT YET ADDED TO SYSTEM"
Exit Sub
End If