How to attach a file with MS Outlook, from a program?

Status
Not open for further replies.
N

niladri

I am using Powerbuilder. Is there any way to attach a file to the MS

Outlook...from the Application Program itself?

N.B. The User will not have to attach the file fut the program will

automatically attach the file..

thanks

niladri
 
K

Ken Slovak - [MVP - Outlook]

You can't attach a file to the application. You can attach it to an item.

"niladri" <niladri> wrote in message

news:91838354-1DB6-4AA2-88C1-0E86C10442C0@microsoft.com...
> I am using Powerbuilder. Is there any way to attach a file to the MS
> Outlook...from the Application Program itself?

> N.B. The User will not have to attach the file fut the program will
> automatically attach the file..

> thanks
> niladri

>
 
N

niladri

Ken, No.. you did not understand my questtion al all... Let me explain you

again...

1. I am running an application using Powerbuilder.

2. From this application I am calling MS Outlook.

3. Users then search for a specific file (some .doc, .xls etc) to attach

with this Outlook.

I want to create something so that I can attach the file with Outlook

(instead user to look for it...since I know exactly what file needs to be

attached...)

all users are left to do is to put the Recipient address and Send....

-niladri
wrote:


> You can't attach a file to the application. You can attach it to an item.

> >

>

> "niladri" <niladri> wrote in message
> news:91838354-1DB6-4AA2-88C1-0E86C10442C0@microsoft.com...
> >I am using Powerbuilder. Is there any way to attach a file to the MS
> > Outlook...from the Application Program itself?
> > N.B. The User will not have to attach the file fut the program will
> > automatically attach the file..
> > thanks
> > niladri
> >


>
 
K

Ken Slovak - [MVP - Outlook]

You would use the Outlook object model to do that. I have no idea about

Powerbuilder, but in VBA code if oMail is a mail item then this would attach

a file to the item:

Dim oAttach As Outlook.Attachment

Set oAttach = oMail.Attachments.Add("pathToTheFile")

"niladri" <niladri> wrote in message

news:8B8D47FF-CD4C-4429-8433-153FE89541DD@microsoft.com...
> Ken, No.. you did not understand my questtion al all... Let me explain you
> again...

> 1. I am running an application using Powerbuilder.
> 2. From this application I am calling MS Outlook.
> 3. Users then search for a specific file (some .doc, .xls etc) to attach
> with this Outlook.

> I want to create something so that I can attach the file with Outlook
> (instead user to look for it...since I know exactly what file needs to be
> attached...)

> all users are left to do is to put the Recipient address and Send....

> -niladri
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
I Outlook 365 - import/attach PST file that used POP3 Using Outlook.com accounts in Outlook 0
P Macro to attach a file in a shared Outlook draft folder Outlook VBA and Custom Forms 2
T Outlook 2016 mp3 attach "this file cannot be preview because there is no previewer installed for it" Using Outlook 1
T Outlook's button 'Attach File' does not work Outlook VBA and Custom Forms 7
S Re: Cannot attach a file to an Outlook 2007 template after installingOffice 2007 SP2 Outlook VBA and Custom Forms 3
V Pin a document to the "Attach file" Recent Documents list Using Outlook 0
A Order of Recent Items in Attach File List Using Outlook 5
M Same file "stuck" on top of file list in "Attach File" drop down Using Outlook 4
T Attach Current File to a new Email Using Outlook 0
J Attach file and send email Using Outlook 10
M Files in "Attach File" popup menu no longer alphabetical Using Outlook 3
F Outlook 365 Can I attach 2 files to to post? Using Outlook 1
B disappearing original when attach to email Using Outlook 1
Z VBA to convert email to task, insert text of email in task notes, and attach copy of original email Outlook VBA and Custom Forms 4
M Macro to attach last 2 items downloaded Outlook VBA and Custom Forms 5
Diane Poremsky Use a Macro to Attach Files to New Messages Using Outlook 0
C Outlook Custom Contact Form Attach Files in new notes fields Outlook VBA and Custom Forms 3
B Outlook will not attach using Send To Feature Using Outlook 0
C Business Con Mgr - E-mail blast, to have a 'CC' as well as attach a document.. Exchange Server Administration 0
L Can't attach files in Outlook 2007 Using Outlook 2
M Can't attach filesd to email as no symbol Using Outlook 7
T Unable to attach message as an attachment in outlook Using Outlook 5
J Problem using drag and drop to attach an html email in Outlook 2010 Using Outlook 18
G Task / Insert / Attach Item / Business Contact BCM (Business Contact Manager) 1
K Attach addin to outlook 2007 editor Outlook VBA and Custom Forms 3
G Tasks - convert email to task & attach email Outlook VBA and Custom Forms 6
L outlook 2007 attach multiple journals to same contact Outlook VBA and Custom Forms 2
B I want to be able to associate or attach e-mails to an account BCM (Business Contact Manager) 1
C Advanced search terms for "Outlook Data File" Using Outlook 1
G Save emails as msg file from Outlook Web AddIn (Office JS) Outlook VBA and Custom Forms 0
E Outlook 365 Save Selected Email Message as .msg File - oMail.Delete not working when SEARCH Outlook VBA and Custom Forms 0
E Save Selected Email Message as .msg File - digitally sign email doesn't works Outlook VBA and Custom Forms 1
W Outlook 365 File access denied attempting to import .pst Using Outlook 6
P Copying ALL calendar entries from Calender in PST file to IMAP OST file? Using Outlook 1
R Saving Emails and Attachments as .msg file Using Outlook 3
M Outlook Macro to save as Email with a file name format : Date_Timestamp_Sender initial_Email subject Outlook VBA and Custom Forms 0
W Create a Quick Step or VBA to SAVE AS PDF in G:|Data|Client File Outlook VBA and Custom Forms 1
Wotme create email only data file Using Outlook 1
C "The linked image cannot be displayed. The file may have been moved, renamed, or deleted. Verify that the link points to the correct file location" Using Outlook 1
L Restoring Outlook from backup pst file Using Outlook 5
W Transfer Outlook 2016 autocomplete file to Outlook 2007 Using Outlook 1
V Backup Calendar, Contacts, Tasks in an POP3 data file Using Outlook 3
DoctorJellybean Use OST file location for fresh installation? Using Outlook 1
HarvMan Exporting IMAP OST file to PST Using Outlook 5
P File Picker for attachment Outlook VBA and Custom Forms 0
D Forwarding email based on the attachment file type and specific text found on the attachment file name Outlook VBA and Custom Forms 1
N File Picker for attachment Outlook VBA and Custom Forms 2
N Save Selected Email Message as .msg File Outlook VBA and Custom Forms 12
L Article on merging pst file Using Outlook 1
J Deliver new messages to New or Existing Data File? Using Outlook 2

Similar threads

Top