borderAndreaVB free resources for Visual Basic developersborder

borderAndreaVB Visual Basic and VB.NET source code resources - Copyright © 1999-2007 Andrea Tincaniborder

AndreaVB | Forum | News | Downloads | Register | Help | Member List | Statistics | Search | PM | Profile

Print This Topic
Previous Topic (closed exe still running in task manager even)Next Topic (MSN Messenger or Windows Messenger?) New Topic New Poll Post Reply
AndreaVB Forum : VB General : Mail
Poster Message
chithu
Level: Trainee

Registered: 09-05-2005
Posts: 2

icon Mail

haiii
i make programme for students details, i want email address go to outlook express for click event  it is possible
by
Chithu101@hotmail.com
chithu101@hotmail.com

09-05-2005 at 02:05 PM
View Profile Send Email to User Show All Posts | Quote Reply
JLRodgers
Level: Moderator

Registered: 04-04-2002
Posts: 1617
icon Re: Mail

If you execute the "mailto:someone@someplace.com" it'll run the default mail client.


Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
Const SW_SHOWNORMAL = 1
Private Sub Form_Load()
    ShellExecute Me.hwnd, vbNullString, "mailto:someone@someplace.com", vbNullString, "", SW_SHOWNORMAL
End Sub



____________________________
Everywhere's Local (classifieds, job postings, & more for everycity in the world - user entered)

09-05-2005 at 08:26 PM
View Profile Send Email to User Show All Posts Visit Homepage | Quote Reply
AndreaVB Forum : VB General : Mail
Previous Topic (closed exe still running in task manager even)Next Topic (MSN Messenger or Windows Messenger?) New Topic New Poll Post Reply
Surf To:


Not Logged In? Username: Password: Lost your password?
Partners: Download Actual Software | Free Software Download
borderAndreaVB free resources for Visual Basic developersborder

borderAndreaVB Visual Basic and VB.NET source code resources - Copyright © 1999-2007 Andrea Tincaniborder