Combo Box Report Issue

D

Demoman

Ok here is what I need to do, when I make a selection in the combo box (like
poor or substandand) I need for that selection to add addition information to
the report based on my selection in the same paragraph body that I would use
if I made a different selection. Some of these opinions can be over a
paragraph long so just installing the information in the Row Source is not a
good option and It does not look professional on the form when you open the
combo box.

Thank you
Demoman
 
J

JaRa

You could have a label or textbox for which you set the caption or value
after the Combobox_AfterupDate is triggered.

e.g.

lblInformation.Caption=Dlookup("Information","Table","Table_ID=" &
cmbSelection)

- Raoul
 
Top