Conditional Picture Print

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hiya

In my database I have a report printing joining istructions for delegates
attending training. If the training is at our training centre then I would
like to include the map and travel instructions. If the training is at a
partner site or client site then I do not want our TC Travel details to show.

Many thanks.

Kerry
 
Use the OnFormat event of whatever section your picture appears in.
You'll need some field value from your table to hang the logic on, such as [Site]

If [Site] = "Partner" Or [Site] = "Client" Then
YourPic.Visible = False
Elseif
YourPic.Visible = True
End If
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Training Database 4
Conditional Page Breaks 1
Some questions re SendObject 1
Summer of '69 9
Event Database 1
Unmatched query question 3
Restoring Primary key - and more 2
Creche,, nursery and Event Management 4

Back
Top