mizenerman
MIS
Hello all. What I'm trying to do is simple and I've read through various threads in this forum and found bits and pieces of what I need but still having an issue. The issue is:
I'm attempting to make bound controls visible/not visible on a tab control. The problem is that on the first record the code works as desired. However, when I move to the second record the same fields visible on the first record are visible on the second - not desired.
I'm trying to give the user an option when they select a Y/N text box. If the text box is selected to Y then certain controls are visible. If the text box is N then those fields should not be visible.
The code:
Private Sub AddMore5_AfterUpdate()
If [AddMore5] = "Y" Then
Radiology_Date6Label.Visible = True
Radiology_Study6Label.Visible = True
Radiology_Comments6Label.Visible = True
Radiology_Date6.Visible = True
Radiology_Study6.Visible = True
Radiology_Comments6.Visible = True
AddMore6_Label.Visible = True
AddMore6.Visible = True
Else
Radiology_Date6Label.Visible = False
Radiology_Study6Label.Visible = False
Radiology_Comments6Label.Visible = False
Radiology_Date6.Visible = False
Radiology_Study6.Visible = False
Radiology_Comments6.Visible = False
AddMore6_Label.Visible = False
AddMore6.Visible = False
End If
End Sub
I've tried this in the Change event with not avail. Any suggestions are much appreciated.
Thank you.
I'm attempting to make bound controls visible/not visible on a tab control. The problem is that on the first record the code works as desired. However, when I move to the second record the same fields visible on the first record are visible on the second - not desired.
I'm trying to give the user an option when they select a Y/N text box. If the text box is selected to Y then certain controls are visible. If the text box is N then those fields should not be visible.
The code:
Private Sub AddMore5_AfterUpdate()
If [AddMore5] = "Y" Then
Radiology_Date6Label.Visible = True
Radiology_Study6Label.Visible = True
Radiology_Comments6Label.Visible = True
Radiology_Date6.Visible = True
Radiology_Study6.Visible = True
Radiology_Comments6.Visible = True
AddMore6_Label.Visible = True
AddMore6.Visible = True
Else
Radiology_Date6Label.Visible = False
Radiology_Study6Label.Visible = False
Radiology_Comments6Label.Visible = False
Radiology_Date6.Visible = False
Radiology_Study6.Visible = False
Radiology_Comments6.Visible = False
AddMore6_Label.Visible = False
AddMore6.Visible = False
End If
End Sub
I've tried this in the Change event with not avail. Any suggestions are much appreciated.
Thank you.