M
mjones
Hi All,
These fields in the PageFooterSection are:
DueDate - date/time field with DueDateLabel attached
Terms - text field with TermsLabel attached.
I've tried setting the fields to Yes for grow and shrink
I've tried code like this:
Private Sub PageFooterSection_Format(Cancel As Integer, FormatCount As
Integer)
If Me.Terms = "" Then
Me.TermsLabel.Visible = False
Else
Me.TermsLabel.Visible = True
End If
Above, I also guessed 0 and Null in place of "".
I've tried replacing above with - Me.TermsLabel.Visible = IIf(Me.Terms
= Null, False, True)
Any ideas would be very welcome.
Thanks again,
Michele
These fields in the PageFooterSection are:
DueDate - date/time field with DueDateLabel attached
Terms - text field with TermsLabel attached.
I've tried setting the fields to Yes for grow and shrink
I've tried code like this:
Private Sub PageFooterSection_Format(Cancel As Integer, FormatCount As
Integer)
If Me.Terms = "" Then
Me.TermsLabel.Visible = False
Else
Me.TermsLabel.Visible = True
End If
Above, I also guessed 0 and Null in place of "".
I've tried replacing above with - Me.TermsLabel.Visible = IIf(Me.Terms
= Null, False, True)
Any ideas would be very welcome.
Thanks again,
Michele