Outlook programming

Status
Not open for further replies.
O

Oras

Hi,

I have the following code to send am email it works well on debug but it does not work after deployment. See the error below.

private void sendEmail()

{

try

{

// calls the function to create a bmp file on a local disk

SaveAsBitmap(this, "C:\\Consular_rating.bmp");

/*(this code uses Outlook to send emails) ---------- */

OutlookApp.Application outlookApp = new Microsoft.Office.Interop.Outlook.Application();

OutlookApp._NameSpace outlookNamespace = outlookApp.GetNamespace("MAPI");

OutlookApp._MailItem outlookMail = (OutlookApp._MailItem)outlookApp.CreateItem(OutlookApp.OlIte mType.olMailItem);

//outlookMail.To = "mailto:legalisation@dirco.gov.za";

outlookMail.To = "mailto:ngomanem@dirco.gov.za";

outlookMail.Subject = "Service rating";

outlookMail.Body = "Attached, please find a form that rates our services by the public.\nOpen the file to print or just view.\n\nFrom the public we serve!";

//Add an attachment.

String sSource = "C:\\Consular_rating.bmp";

String sDisplayName = "MyFirstAttachment";

int iPosition = (int)outlookMail.Body.Length + 1;

int iAttachType = (int)OutlookApp.OlAttachmentType.olByValue;

OutlookApp.Attachment oAttach = outlookMail.Attachments.Add(sSource, iAttachType, iPosition, sDisplayName);

// sends an email

outlookMail.Send();

if (MessageBox.Show(this, "Rating sent.", "Chief Directorate: Consular Services.", MessageBoxButtons.OK, MessageBoxIcon.Exclamation) == DialogResult.OK)

{

// calls the function to delete file: Consular_rating.bmp.

deleteAttachment("C:\\Consular_rating.bmp");

// closes the whole form.

this.Close();

}

}

catch (Exception ex)

{

MessageBox.Show(this, ex.Message , "Chief Directorate: Consular Services.", MessageBoxButtons.OK, MessageBoxIcon.Information);

}

}

This is an error I’m getting when trying to send from a client computer.

Unhanndle exception has occurred you application. If you click

Continue, the application will ignore this error and attemp to continue. If

You click Quit, the application will closw immediately.

Couldnot load file or assembly ‘Microsoft.Office.Interop.Outlook,

Version = 10.0.4504.0, Culture = neutral, PublicKeyToken = 31bf3856ad364e35’

or one of its dependencies. The system cannot find the file specified
 
K

Ken Slovak - [MVP - Outlook]

This forum is for custom Outlook forms, not for C# code in addins or

standalone programs. A better forum would be the program_addins forum.

What version of Outlook are you targeting, what version are you developing

on? What version of VS? Is this from a COM addin or from a standalone

program?

The error references loading Outlook 2002. Is that the version that is

running where the code is deployed? What version is on the development

machine? At least post the relevant information please.

"Oras" <mndawu[at]gmail[dot]com> wrote in message

news:ODY4xMblKHA.2160@TK2MSFTNGP02.phx.gbl...
> Hi,

> I have the following code to send am email it works well on debug but it
> does not work after deployment. See the error below.

> private void sendEmail()
> {
> try
> {
> // calls the function to create a bmp file on a local disk

> SaveAsBitmap(this, "C:\\Consular_rating.bmp");

> /*(this code uses Outlook to send emails) ---------- */
> OutlookApp.Application outlookApp = new
> Microsoft.Office.Interop.Outlook.Application();
> OutlookApp._NameSpace outlookNamespace =
> outlookApp.GetNamespace("MAPI");
> OutlookApp._MailItem outlookMail =
> (OutlookApp._MailItem)outlookApp.CreateItem(OutlookApp.OlIte
> mType.olMailItem);

> //outlookMail.To = "mailto:legalisation@dirco.gov.za";
> outlookMail.To = "mailto:ngomanem@dirco.gov.za";
> outlookMail.Subject = "Service rating";
> outlookMail.Body = "Attached, please find a form that rates
> our services by the public.\nOpen the file to print or just view.\n\nFrom
> the public we serve!";

> //Add an attachment. String sSource =
> "C:\\Consular_rating.bmp";
> String sDisplayName = "MyFirstAttachment";

> int iPosition = (int)outlookMail.Body.Length + 1;
> int iAttachType =
> (int)OutlookApp.OlAttachmentType.olByValue;
> OutlookApp.Attachment oAttach =
> outlookMail.Attachments.Add(sSource, iAttachType, iPosition,
> sDisplayName);

> // sends an email
> outlookMail.Send();

> if (MessageBox.Show(this, "Rating sent.", "Chief
> Directorate: Consular Services.", MessageBoxButtons.OK,
> MessageBoxIcon.Exclamation) == DialogResult.OK)
> {
> // calls the function to delete file:
> Consular_rating.bmp.
> deleteAttachment("C:\\Consular_rating.bmp");

> // closes the whole form.
> this.Close();
> }

> }
> catch (Exception ex) { MessageBox.Show(this, ex.Message ,
> "Chief Directorate: Consular Services.", MessageBoxButtons.OK,
> MessageBoxIcon.Information);
> }
> }
> This is an error I’m getting when trying to send from a client
> computer.

> Unhanndle exception has occurred you application. If you click
> Continue, the application will ignore this error and attemp to continue.
> If
> You click Quit, the application will closw immediately.

> Couldnot load file or assembly ‘Microsoft.Office.Interop.Outlook,
> Version = 10.0.4504.0, Culture = neutral, PublicKeyToken =
> 31bf3856ad364e35’ or one of its dependencies. The system cannot find
> the file specified

>
 
O

Oras

kenslovak wrote on Fri, 15 January 2010 09:37
> This forum is for custom Outlook forms, not for C# code in addins or
> standalone programs. A better forum would be the program_addins forum.

> What version of Outlook are you targeting, what version are you developing
> on? What version of VS? Is this from a COM addin or from a standalone
> program?

> The error references loading Outlook 2002. Is that the version that is
> running where the code is deployed? What version is on the development
> machine? At least post the relevant information please.

> >

>

> "Oras" <mndawu[at]gmail[dot]com> wrote in message
> news:ODY4xMblKHA.2160@TK2MSFTNGP02.phx.gbl...
> > Hi,
> > I have the following code to send am email it works well on debug but it
> > does not work after deployment. See the error below.
> > private void sendEmail()
> > {
> > try
> > {
> > // calls the function to create a bmp file on a local disk
> > SaveAsBitmap(this, "C:\\Consular_rating.bmp");
> > /*(this code uses Outlook to send emails) ---------- */
> > OutlookApp.Application outlookApp = new
> > Microsoft.Office.Interop.Outlook.Application();
> > OutlookApp._NameSpace outlookNamespace =
> > outlookApp.GetNamespace("MAPI");
> > OutlookApp._MailItem outlookMail =
> > (OutlookApp._MailItem)outlookApp.CreateItem(OutlookApp.OlIte
> > mType.olMailItem);
> > //outlookMail.To = "mailto:legalisation@dirco.gov.za";
> > outlookMail.To = "mailto:ngomanem@dirco.gov.za";
> > outlookMail.Subject = "Service rating";
> > outlookMail.Body = "Attached, please find a form that rates
> > our services by the public.\nOpen the file to print or just view.\n\nFrom
> > the public we serve!";
> > //Add an attachment. String sSource =
> > "C:\\Consular_rating.bmp";
> > String sDisplayName = "MyFirstAttachment";
> > int iPosition = (int)outlookMail.Body.Length + 1;
> > int iAttachType =
> > (int)OutlookApp.OlAttachmentType.olByValue;
> > OutlookApp.Attachment oAttach =
> > outlookMail.Attachments.Add(sSource, iAttachType, iPosition,
> > sDisplayName);
> > // sends an email
> > outlookMail.Send();
> > if (MessageBox.Show(this, "Rating sent.", "Chief
> > Directorate: Consular Services.", MessageBoxButtons.OK,
> > MessageBoxIcon.Exclamation) == DialogResult.OK)
> > {
> > // calls the function to delete file:
> > Consular_rating.bmp.
> > deleteAttachment("C:\\Consular_rating.bmp");
> > // closes the whole form.
> > this.Close();
> > }
> > }
> > catch (Exception ex) { MessageBox.Show(this, ex.Message ,
> > "Chief Directorate: Consular Services.", MessageBoxButtons.OK,
> > MessageBoxIcon.Information);
> > }
> > }
> > This is an error I’m getting when trying to send from a client
> > computer.
> > Unhanndle exception has occurred you application. If you click
> > Continue, the application will ignore this error and attemp to continue.
> > If
> > You click Quit, the application will closw immediately.
> > Couldnot load file or assembly ‘Microsoft.Office.Interop.Outlook,
> > Version = 10.0.4504.0, Culture = neutral, PublicKeyToken =
> > 31bf3856ad364e35’ or one of its dependencies. The system cannot find
> > the file specified
> >


------------------------------------------------------------ -------
Sorry for providing less information, see the details below:

I’m targeting outlook 2007, deploying on Outlook 2007, using VS 2005, It’s from a standalone program.
 
K

Ken Slovak - [MVP - Outlook]

Something is very odd then, because the error message you showed refers to

trying to load the PIA for Outlook 2002 and failing. Check your references

and version references in your project.

What versions of Office and Outlook are installed on your development

computer?

Does running on any computer you deploy to fire this error or only on

certain machines?

"Oras" <mndawu[at]gmail[dot]com> wrote in message

news:eT3cO5$lKHA.5040@TK2MSFTNGP06.phx.gbl...

<snip>
> Sorry for providing less information, see the details below:

> I’m targeting outlook 2007, deploying on Outlook 2007, using VS
> 2005, It’s from a standalone program.

>
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
R Programming Web Outlook Access Outlook VBA and Custom Forms 3
S Programming Outlook from MS Access (Inbox) Outlook VBA and Custom Forms 1
Rupert Dragwater Background colors not saving in Outlook 365 Using Outlook 4
petunia Outlook tasks module sunsetting? Exchange Server Administration 3
G Save emails as msg file from Outlook Web AddIn (Office JS) Outlook VBA and Custom Forms 1
D Outlook VBA forward the selected email to the original sender’s email ID (including the email used in TO, CC Field) from the email chain Outlook VBA and Custom Forms 3
U Outlook 2021 not showing contact cards in Searches Using Outlook 2
C Outlook - Macro to block senders domain - Macro Fix Outlook VBA and Custom Forms 2
H Outlook 365 O365 outlook calendar item editing Using Outlook 1
J Outlook 365 html inline images Using Outlook 1
Rupert Dragwater How to get Outlook 365 to open from websites Using Outlook 5
S Why do I have to close and reopen Outlook for macros to work? Outlook VBA and Custom Forms 2
J Outlook 2021 ScanPST errors (yet again ... sorry): repair button missing Outlook 2021 Using Outlook 0
HarvMan Outlook 365 - Rule to Move an Incoming Message to Another Folder Using Outlook 4
K Moved pst to new computer, now Gmail not coming into Outlook Using Outlook 7
S Email Macros to go to a SHARED Outlook mailbox Draft folder...NOT my personal Outlook Draft folder Using Outlook 2
F Running Scripts in Outlook 2021 Using Outlook 0
Nufc1980 Outlook "Please treat this as private label" auto added to some emails - Help. Using Outlook 3
S Outlook 2019 Custom outlook Add-in using Visual Studio Outlook VBA and Custom Forms 0
V Outlook macros no longer run until VB editor is opened Outlook VBA and Custom Forms 0
R Outlook 365 How to integrate a third-party app with Outlook to track email and sms? Using Outlook 2
e_a_g_l_e_p_i I can't believe what I am seeing when trying to install Outlook 2021 Using Outlook 9
Kika Melo Outlook Calendar deleted appointments not in Deleted Items folder Using Outlook 3
P How to get a QR code for automatic signin with Outlook for iOS Using Outlook 5
J Migrating Outlook Using Outlook 1
Retired Geek Outlook for the MAC with Yahoo accounts now very broken Using Outlook 9
S Outlook 2002- "Send" button has disappeared. Help please. Using Outlook 1
L How Stop Outlook Nag Messages Using Outlook 1
TomHuckstep Remove Send/Receive All Folders (IMAP/POP) button from Outlook 365 Ribbon Using Outlook 1
L I Cannot Sign Into My Outlook Account? Outlook VBA and Custom Forms 0
icacream Outlook 2021 - Google calendar in the peek Using Outlook 0
e_a_g_l_e_p_i Question about installing my Gmail account on my iPhone but still getting messages downloaded to my desktop Outlook. Using Outlook 3
F Want to add second email to Outlook for business use Using Outlook 4
kburrows Outlook Email Body Text Disappears/Overlaps, Folders Switch Around when You Hover, Excel Opens Randomly and Runs in the Background - Profile Corrupt? Using Outlook 0
M using excel to sort outlook appointment items Outlook VBA and Custom Forms 4
e_a_g_l_e_p_i MY Outlook 2021 changed the format of the shortcuts for mail, calendar etc. Using Outlook 10
Z Outlook 2021 Outlook new emails notification not working Using Outlook 4
K Changing the Deleted Items location in Outlook 2019 Using Outlook 2
J Outlook 365 Outlook Macro to Sort emails by column "Received" to view the latest email received Outlook VBA and Custom Forms 0
V How to use Comas in a picklist in Outlook forms Outlook VBA and Custom Forms 3
e_a_g_l_e_p_i Question about reinstalling Outlook 2021 Using Outlook 5
A Outlook 365 Outlook (part of 365) now working offline - argh Using Outlook 5
M Outlook Macro to save as Email with a file name format : Date_Timestamp_Sender initial_Email subject Outlook VBA and Custom Forms 0
G LinkedIn tab missing in Outlook 365 (but working in OWA) Using Outlook 0
Jay Freedman Outlook forgets "not junk" marking Using Outlook 0
KurtLass Opening Graphics Attachments in Outlook 2021 Using Outlook 0
P now on office 365 but getting error messages about missing Outlook 2013 cache folders Using Outlook 2
B Outlook config download Outlook VBA and Custom Forms 1
M Short term workaround for when Outlook searching stopped functioning Using Outlook 0
D Outlook 2016 Creating an outlook Macro to select and approve Outlook VBA and Custom Forms 0

Similar threads

Top