hi i have a lable which opens up outlook, how do i populate the subject and message area
Private Sub Label9_Click()
Dim Subj As String
Link = "mailto:seenan.marc@bsksyb.com"
On Error GoTo NoCanDo
ActiveWorkbook.FollowHyperlink Address:=Link, NewWindow:=True
'Unload Me
Exit Sub
NoCanDo:
MsgBox "Cannot open " & Link
End Sub
this is what im using at the mo
Private Sub Label9_Click()
Dim Subj As String
Link = "mailto:seenan.marc@bsksyb.com"
On Error GoTo NoCanDo
ActiveWorkbook.FollowHyperlink Address:=Link, NewWindow:=True
'Unload Me
Exit Sub
NoCanDo:
MsgBox "Cannot open " & Link
End Sub
this is what im using at the mo
