|
-
Aug 15th, 2000, 05:23 AM
#1
Thread Starter
Lively Member
Hi! How can I launch the default email utility
(Outlook Express/Netscape Communicator) using
VB 6.0?
-
Aug 15th, 2000, 05:28 AM
#2
_______
<?>
Code:
'launch default email program and send mail
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
Private Const SW_SHOW = 5
'form code
ShellExecute hwnd, "open", "mailto:[email protected]", vbNullString, vbNullString, SW_SHOW
"A myth is not the succession of individual images,
but an integerated meaningful entity,
reflecting a distinct aspect of the real world."
___ Adolf Jensen
-
Aug 15th, 2000, 08:45 PM
#3
Thread Starter
Lively Member
Thanks HeSaidJoe...
another question... what if I want to read my emails?
How can I open the default Email Inbox?
-
Aug 16th, 2000, 06:03 AM
#4
_______
<?>
Sorry, I only have code for things I have used. You can go here and I think you might find what you are after.
Later,
Wayne
http://www.planet-source-code.com/vb...lngWId=1&B1=Go
"A myth is not the succession of individual images,
but an integerated meaningful entity,
reflecting a distinct aspect of the real world."
___ Adolf Jensen
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|