I am trying to start the default e-mail browser automatically from a menu
item click. The code works for the web browser but not for e-mail.
This is the sample for web browser that works
Private Sub MenuItem25_Clic k(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles MenuItem25.Clic k
System.Diagnost ics.Process.Sta rt("http://www.company.com ")
End Sub
This does not
Private Sub MenuItem26_Clic k(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles MenuItem26.Clic k
System.Diagnost ics.Process.Sta rt("sales@compa ny.com")
End Sub
I am not sure what is wrong. Please help
Thanks Perry Langla
item click. The code works for the web browser but not for e-mail.
This is the sample for web browser that works
Private Sub MenuItem25_Clic k(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles MenuItem25.Clic k
System.Diagnost ics.Process.Sta rt("http://www.company.com ")
End Sub
This does not
Private Sub MenuItem26_Clic k(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles MenuItem26.Clic k
System.Diagnost ics.Process.Sta rt("sales@compa ny.com")
End Sub
I am not sure what is wrong. Please help
Thanks Perry Langla
Comment