Hi fake, what i am trying to do is the following, I have a access form and the access form has a button, when i click this button, i send an email to the people i choose in a list box that I also have in the access form. in the body part of the email I am trying to make the name of the person a hyperlink using vba so when the person gets the email in their mailbox they can click on their name and the monthly report will come up.
WIlfer ANY HELP WILL BE APPRICIATED here is part of the code
strMessage

= " IdNumber:" & item12 & Chr(12) & _
Chr(12) & "Salutation:" & item1 & _
Chr(12) & "Name:" & item2 & _
Chr(12) & "PS:" & item3 & _
Chr(12) & "SS:" & item4 & _
Chr(12) & "CPhone:" & item5 & _
Chr(12) & "Phone:" & item6 & _
Chr(12) & "Email:" & item7 & _
Chr(12) & "Attachment:" & item8 & _
Chr(12) & "Rate:" & item9 & _
Chr(12) & "Communication:" & item10 & _
Chr(12) & "Manager:" & item11 & Chr(12) &
'Create new mail message
Set gappOutlook = GetObject(, "Outlook.Application.9")
Set nms = gappOutlook.GetNamespace("MAPI")
Set fld = nms.GetDefaultFolder(olFolderOutbox)
Set msg = fld.Items.Add
With msg
.To = EmailRes
.Subject = strSubject
For m = 0 To p
strBody = strBody & " " & strMessage(m) & Chr(12) & Chr(12)
Next m
.Body = strBody
end with