|
-
Nov 20th, 2000, 07:56 AM
#1
Thread Starter
Hyperactive Member
Thank you Lafor & HeSaidJoe for helping me out on my last Outlook question. Here's another one for you or any one of you children out there...
Without using an API call (anyone know if we're privy to one?) how can you get the Send-to dialog displayed so the user can have control to edit/send/save/cancel?
-
Nov 20th, 2000, 01:28 PM
#2
Fanatic Member
...
do u want to just start outlook?
If so, find the path and shell it
shell "C:\Program Files\Microsoft Office\Office\Outlook.exe"
That's the path where mine is..
-
Nov 20th, 2000, 03:29 PM
#3
Fanatic Member
...
VBMOM,
Just in case you did not want to launch outlook
' Create new message
Set objOutlookMsg = objOutlook.CreateItem(olMailItem)
With objOutlookMsg
.To = "[email protected]"
.Subject = "This is a test"
.Body = "Dear Mr/Mrs VB" & vbNewLine
.Body = .Body & "This automated email is to tell you"
.Body = .Bo0dy & "...that you started on " & vbnewline
'here is the key
.Display 1
end with
-
Nov 21st, 2000, 09:24 AM
#4
Thread Starter
Hyperactive Member
Thank you so much. I shoulda looked in the object browser for methods, huh...
-
Nov 28th, 2000, 05:04 PM
#5
Thread Starter
Hyperactive Member
Thank you, that worked great. I have another problem with ShellExecute I'm posting separately. Thanks for your help again!
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
|