Showing Drawings

chastst

Registered User.
Local time
Today, 19:40
Joined
Oct 19, 2000
Messages
17
I am working on a report that lists all of the specifics for some equipment in a plant based on a query. I would like to show a different sketch of each group of equipment on the report. Is there a way to make only the sketch I want visible based on which group the equipment belongs to that is chosen, or do I need to make a table and tie it together?

Thanks
 
Select case GroupEquipment
Case "FirstGroup"
Sketch1.visible = true
Sketch2.visible = false
Case "SecondGroup"
Sketch1.visible = false
Sketch2.visible = true
Case else
Sketch1.visible = false
Sketch2.visible = false
End select


This will be works if you want to print a single group report.
Hope this helps you, S.
 

Users who are viewing this thread

Back
Top Bottom