Hi
I have a form and it has text boxes where you enter data. There is a button at the bottom and once clicked it opens an email with the senders name and subject. The problem i am having is to put all the data enetered in to the message text of the email. I can insert a single entry but not all off the data entered. Does anybody know how?
DoCmd.SendObject acSendNoObject, , , "grix@hallmarkconsumer.co.uk", , , "Purchase request Form", name, , txtemail
The above CODE works fine but the messsage text is just a name and i need the following as well :-
Project Number
Description
quantity
I have tried the code below but it does not work.
DoCmd.SendObject acSendNoObject, , , "grix@hallmarkconsumer.co.uk", , , "Purchase request Form", name Desc Quantity, , txtemail
The above code has a problem it is all on one line but when i come to the name Desc Quantity it will not let me put it in the message part of the email. I also want to start a new line at Desc and Quantity and i do not know how?
can anyone help thanks
I have a form and it has text boxes where you enter data. There is a button at the bottom and once clicked it opens an email with the senders name and subject. The problem i am having is to put all the data enetered in to the message text of the email. I can insert a single entry but not all off the data entered. Does anybody know how?
DoCmd.SendObject acSendNoObject, , , "grix@hallmarkconsumer.co.uk", , , "Purchase request Form", name, , txtemail
The above CODE works fine but the messsage text is just a name and i need the following as well :-
Project Number
Description
quantity
I have tried the code below but it does not work.
DoCmd.SendObject acSendNoObject, , , "grix@hallmarkconsumer.co.uk", , , "Purchase request Form", name Desc Quantity, , txtemail
The above code has a problem it is all on one line but when i come to the name Desc Quantity it will not let me put it in the message part of the email. I also want to start a new line at Desc and Quantity and i do not know how?
can anyone help thanks