buckeyepilot67
Technical User
Alright, newbie here again needing assistance. I have searched and searched for the answer, but no luck. I am looking to format a short date (3/18/12) into a long date (Sunday, March 18, 2012) in Access. I have basically taken information that is downloaded into a table and created a form off of it. Then that form can automatically send an email. What I need is for the date to be long form in the email portion even though it is downloaded into the table in short form. The email works perfectly except for the formatting of the date needing changed. Anyone have any suggestions?
Dim email, fname, lname, team, SalesVP, deptairport, arrairport, dat, strBody, bccemail As String
Dim objOutlook As Object 'outlook.Application
Dim objEmail As Object ' outlook.MailItem
email = Me!ContactInfo
fname = Me!First
lname = Me!Last
dat = Me!FlightDate
So basically Me!FlightDate is in short date form.
Thanks again for your help.
Dim email, fname, lname, team, SalesVP, deptairport, arrairport, dat, strBody, bccemail As String
Dim objOutlook As Object 'outlook.Application
Dim objEmail As Object ' outlook.MailItem
email = Me!ContactInfo
fname = Me!First
lname = Me!Last
dat = Me!FlightDate
So basically Me!FlightDate is in short date form.
Thanks again for your help.