Not sure how to do this, but I have a button on my main form that is supposed to send an e-mail out with some details of the selected record in my subform.
DoCmd.SendObject acSendNoObject, , , "somebody@somewhere.com", , , Me!suborderlist.Form!Customer.Column(1) & " Issue ", Me!suborderlist.Form!Comments, False
This code is not working because I don't know how to refer properly to my subform fields.
Also, what is the best way for me to tell access which record I want to send?
DoCmd.SendObject acSendNoObject, , , "somebody@somewhere.com", , , Me!suborderlist.Form!Customer.Column(1) & " Issue ", Me!suborderlist.Form!Comments, False
This code is not working because I don't know how to refer properly to my subform fields.
Also, what is the best way for me to tell access which record I want to send?