View Full Version : Visual Basic Help


bissonette
06-30-2004, 09:30 AM
I was wondering if there is a way to make Visual preform a check on blank fields to avoid printing them in reports. For example I have a database that has fields that apply to some records but not all. I need the reports to print only the fields that apply to each record. I also need labels so the print data only options doesnt help

thanks

WayneRyan
07-03-2004, 10:20 PM
bissonette,

You can use the DetailFormat event.


If SomeCondition = True Then
Me.SomeLabel.Visible = False
Me.SomeField.Visible = False
End If


Wayne