Trying to write code in access 2003 to something of the effect:
Private Sub GroupFooter1_Print(Cancel As Integer, PrintCount As Integer)
If Me.Balance <= 0 Then
Me.Notes.FontSize = 6
Me.Notes.Visible = False
Me.Exhausted.Visible = True
Me.Text131.Visible = True
Else
Me.Exhausted.Visible = False
Me.Text131.Visible = False
Me.Notes.FontSize = 9
End If
End Sub
This would give the graphic "EXHAUSTED" enough room to display and allow everything in me.notes to be viewed.
Private Sub GroupFooter1_Print(Cancel As Integer, PrintCount As Integer)
If Me.Balance <= 0 Then
Me.Notes.FontSize = 6
Me.Notes.Visible = False
Me.Exhausted.Visible = True
Me.Text131.Visible = True
Else
Me.Exhausted.Visible = False
Me.Text131.Visible = False
Me.Notes.FontSize = 9
End If
End Sub
This would give the graphic "EXHAUSTED" enough room to display and allow everything in me.notes to be viewed.