In a customer form I have a field, cust_mess that is popluated with
information that will be displayed when an invoice is generated.
Obviously this info is customer specific. Ie. customer Tommy Jones
tooling wants his items shipped Roadway Freight always. We will enter
roadway freight in the cust_mess field via the cuatomer form. When I
generate an invoice I want the invoice form to "popup" a message box
that he does in fact want items shipped via roadway. I have all of
this licked except the part where I display the text entered the
cust_mess field. I am reading all of the info but need the format as
to how to display it.....
If Me!call_po = True Then
MsgBox ("CUSTOMER.cust _mess")
End If
Currently I have this but it only displays the text inside the quotes.
Thanks ahead of time for your help. I am sure it is simple. :)
information that will be displayed when an invoice is generated.
Obviously this info is customer specific. Ie. customer Tommy Jones
tooling wants his items shipped Roadway Freight always. We will enter
roadway freight in the cust_mess field via the cuatomer form. When I
generate an invoice I want the invoice form to "popup" a message box
that he does in fact want items shipped via roadway. I have all of
this licked except the part where I display the text entered the
cust_mess field. I am reading all of the info but need the format as
to how to display it.....
If Me!call_po = True Then
MsgBox ("CUSTOMER.cust _mess")
End If
Currently I have this but it only displays the text inside the quotes.
Thanks ahead of time for your help. I am sure it is simple. :)
Comment