I having trouble creating a Hyperlink in and email using VBA in Access
The hyperlink shows up partially ending at the space
\\servero2\Data[color] Files\Task Order\TimeSheets.mdb
Here is my code
TIA
DougP
The hyperlink shows up partially ending at the space
\\servero2\Data[color] Files\Task Order\TimeSheets.mdb
Here is my code
Code:
Dim Msg As String
Msg = "Please open your timesheet and fill it out!" & vbCrLf
Msg = Chr(34) & "\\servero2\Data Files\Task Order\TimeSheets.mdb" & Chr(34) & vbCrLf
Msg = Msg & vbCrLf ' Blank Line
Msg = Msg & "OHC Environmental Droid" & vbCrLf
Msg = Msg & "Timsheet Administrator" & vbCrLf
DoCmd.SendObject acSendNoObject, "", acFormatHTML, , , , "Missing Timehseet info for " & Me.WeekEndDate, Msg, True
TIA
DougP