G
Guest
I have a report with several subforms (I did not design this mess). One of
the subforms is not only a subform on a reoprt but it is also nested into
another subform on the same report (it looks like it is). What I need is to
have that suform not show if the option box on my main form is false. The
comments work correctly however I have a blank section (page on report) where
the comments use to be. This could be a 1/4, 1/2 or a full page depening on
how many comments I have. Can someone direct me to the correct solution
Here is my code..
If Forms!frmMain!Comment = True Then
Me.[rsubJoseReport-InProcessComments].Visible = True
Else
Me.[rsubJoseReport-InProcessComments].Visible = False
Me.[rsubJoseReport-InProcessComments].Height = 0
End If
the subforms is not only a subform on a reoprt but it is also nested into
another subform on the same report (it looks like it is). What I need is to
have that suform not show if the option box on my main form is false. The
comments work correctly however I have a blank section (page on report) where
the comments use to be. This could be a 1/4, 1/2 or a full page depening on
how many comments I have. Can someone direct me to the correct solution
Here is my code..
If Forms!frmMain!Comment = True Then
Me.[rsubJoseReport-InProcessComments].Visible = True
Else
Me.[rsubJoseReport-InProcessComments].Visible = False
Me.[rsubJoseReport-InProcessComments].Height = 0
End If