MkIIISupra
Programmer
Below is the code I have at the moment (still in the creating phase...) anyhow what I would like to do is set the code to format the e-mail for me. What I mean is simple. Below this code chunk is test output from the code below as it is formatted and sent. Below that is what I would like it to look like when the user pushes the button.
DATE REQUESTED: 5/11/2006 TIME REQUESTED: 1:52:33 PM TRACKING NO: 123435213-08
REQUESTOR: some user TEAM NO: 6 PHONE NO: XXX-XXX-XXXX
CUSTOMER: diocese of burlingon ST: vt
RERUN
DATE REQUESTED: 5/11/2006 TIME REQUESTED: 1:52:33 PM TRACKING NO: 123435213-08
REQUESTOR: some user TEAM NO: 6 PHONE NO: XXX-XXX-XXXX
CUSTOMER: diocese of township ST: wa
RERUN:
So can I set the BOLD and UNDERLINE attributes in VBA and if so how do I do that? I have been looking but it seems that I am not finding...
Again as always Thank you for your time and answers!
One by one the penguins return my sanity, as day by day Microsoft steals my sanity!
OpenSuSE 10.0 kicks fanny!
Code:
DoCmd.SendObject , , , "user@user.com", , Me.copyTo, "Print Request", "DATE REQUESTED: " & Me.dateReq _
& " TIME REQUESTED: " & Me.timeReq & " TRACKING NO: " & Me.trkNum & vbCrLf & "REQUESTOR: " _
& Me.requestor & " TEAM NO: " & Me.tmNum & " PHONE NO: " & Me.reqPhNum & vbCrLf _
& "CUSTOMER: " & Me.custId & " ST: " & Me.state & vbCrLf & Me.reptReason, True
DATE REQUESTED: 5/11/2006 TIME REQUESTED: 1:52:33 PM TRACKING NO: 123435213-08
REQUESTOR: some user TEAM NO: 6 PHONE NO: XXX-XXX-XXXX
CUSTOMER: diocese of burlingon ST: vt
RERUN
DATE REQUESTED: 5/11/2006 TIME REQUESTED: 1:52:33 PM TRACKING NO: 123435213-08
REQUESTOR: some user TEAM NO: 6 PHONE NO: XXX-XXX-XXXX
CUSTOMER: diocese of township ST: wa
RERUN:
So can I set the BOLD and UNDERLINE attributes in VBA and if so how do I do that? I have been looking but it seems that I am not finding...
Again as always Thank you for your time and answers!
One by one the penguins return my sanity, as day by day Microsoft steals my sanity!
OpenSuSE 10.0 kicks fanny!