R
Rodney
I have the following on a report in the detail_format_event properties field.
Private Sub Detail1_Format(Cancel As Integer, FormatCount As Integer)
If (Me!CourseFullNames.Value = "Senior Sailors Management Course") Then
Me!EmployStatus.Visible = False
End If
End Sub
This works fine if EmployStatus has its own control, but I have it in a
combine text field.
Is it still posible to do this.
This is my combine text field
=[RankLong] & " " & Left([FirstName],1) & "." & " " & Left([OtherName],1) &
"." & " " & [LastName] & "," & " " &
[StudentPMKeysNumber] & "" & [EmployStatus]
I am trying to achieve the following
Private Sub Detail1_Format(Cancel As Integer, FormatCount As Integer)
If (Me!CourseFullNames.Value = "Senior Sailors Management Course") Then
Me!EmployStatus.Visible = False
If (Me!CourseFullNames.Value = "New Entry Officer Course") Then
Me!StudentPMKeysNumber.Visible = False
End If
End Sub
Any help would be great.
Thanks
Rod
Private Sub Detail1_Format(Cancel As Integer, FormatCount As Integer)
If (Me!CourseFullNames.Value = "Senior Sailors Management Course") Then
Me!EmployStatus.Visible = False
End If
End Sub
This works fine if EmployStatus has its own control, but I have it in a
combine text field.
Is it still posible to do this.
This is my combine text field
=[RankLong] & " " & Left([FirstName],1) & "." & " " & Left([OtherName],1) &
"." & " " & [LastName] & "," & " " &
[StudentPMKeysNumber] & "" & [EmployStatus]
I am trying to achieve the following
Private Sub Detail1_Format(Cancel As Integer, FormatCount As Integer)
If (Me!CourseFullNames.Value = "Senior Sailors Management Course") Then
Me!EmployStatus.Visible = False
If (Me!CourseFullNames.Value = "New Entry Officer Course") Then
Me!StudentPMKeysNumber.Visible = False
End If
End Sub
Any help would be great.
Thanks
Rod