Is it possible to hide several report fields as a group depending on a status rather than doing it with each one indiviually. i.e.
Private Sub Detail_Format (Cancel as Integer, FormatCount As Integer)
If me.Status = "First Status" then
me.infantno.visible = False
me.infantname.visible = False
End If
End Sub
What i would like is to group all the infant details into one group, called something like InfantGroupDetail and then just be able to code
Private Sub Detail_Format (Cancel as Integer, FormatCount As Integer)
If me.status ="First Status" then
me.infantgroupdetail.visible = False
EndIf
End Sub
Thanks in advance
Sam
It's just common sense, shame sense isn't common!
Private Sub Detail_Format (Cancel as Integer, FormatCount As Integer)
If me.Status = "First Status" then
me.infantno.visible = False
me.infantname.visible = False
End If
End Sub
What i would like is to group all the infant details into one group, called something like InfantGroupDetail and then just be able to code
Private Sub Detail_Format (Cancel as Integer, FormatCount As Integer)
If me.status ="First Status" then
me.infantgroupdetail.visible = False
EndIf
End Sub
Thanks in advance
Sam
It's just common sense, shame sense isn't common!