Outlook programming

  • Thread starter Thread starter Oras
  • Start date Start date
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
 
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

>
 
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.
 
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
R Outlook 2021 change view Using Outlook 0
K Outlook font corrupted in some point sizes, resets on close/open Using Outlook 2
J Is the Windows Outlook Tasks module really going to be gone? Using Outlook 3
F Outlook 2010 and Hotmail Using Outlook 1
A Outlook 2021 needs 'enter' for people search Using Outlook 2
HarvMan Outlook 365 Inbox Font Using Outlook 8
Retired Geek Outlook on MAC delete duplicate Sent emails Using Outlook 0
S New Outlook - IMAP ISSUES and support for addins? Using Outlook 1
C outlook.com fonts Using Outlook 2
mickymakz Common challenges organizations face when integrating SharePoint and Outlook? Exchange Server Administration 0
R Outlook with several IMAP accounts generating folders with 1111 suffix Using Outlook 0
D Send email from Outlook Alias using Mac? Using Outlook 0
G Reply a selected message and remove blank space before signature Outlook 365 version 2406 64BIT Outlook VBA and Custom Forms 2
G Reply a selected message and remove blank space before signature Outlook 365 version 2406 64BIT Outlook VBA and Custom Forms 0
kburrows "New" Outlook Desktop App Mailbox Size Using Outlook 4
N Best way to sync calendar and contacts between Outlook 365 and Outlook on iPhone Using Outlook 4
H Macro to Delete Duplicate items in Outlook calendar where title is the same and date is the same Outlook VBA and Custom Forms 0
Y The New Outlook - Q's & Thoughts Using Outlook 27
M Start Outlook 365 at unified inbox Using Outlook 2
B Requesting VBA code to make Outlook prompt for confirmation when deleting a task? Outlook VBA and Custom Forms 4
T In-line reply style in Outlook II Outlook VBA and Custom Forms 1
G Outlook Contact Item.Restrict where FullName is NULL Outlook VBA and Custom Forms 3
J Emails with .ICS calendar invitations attached don't contents when received in Outlook 365 Using Outlook 6
W Outlook 2021 Hanging on "Sending Emails" Using Outlook 3
T Outlook Desk Top 2021 Overdoing Security Using Outlook 7
O Any 3rd party tool that sync (mirror) from Outlook Contacts to Google Contacts? Using Outlook 4
D Outlook 365 Outlook Message "Cannot be sent because the message has changed" Using Outlook 0
J Hotmail drafts started on desktop disappear, but show in web version of Outlook Using Outlook 4
Z Hotmail account deleted from outlook and issue with account not exist Using Outlook 0
J 'Name on the security certificate is invalid or...' - Outlook on desktop talking to hotmail.com account Using Outlook.com accounts in Outlook 5
J Outlook, Word, Access crash unless run in Admin mode - time dependent it seems Using Outlook 10
T Why do Outlook Desktop 2021 tasks from my wife's email show up in my task pane? Using Outlook 2
B Delete Read Receipts in Your Outlook Outlook VBA and Custom Forms 0
M Outlook changes the "Modified" field when moving/copying a Contact. Using Outlook 0
macdotcom Outlook 365 Outlook folder export to PST archival tool - close, but need a nudge Outlook VBA and Custom Forms 2
M Outlook 2016 still feature updating Using Outlook 0
e_a_g_l_e_p_i Question about Outlook 2021 and Gmail Using Outlook 8
J Outlook VBA to send from Non-default Account & Data Files Outlook VBA and Custom Forms 4
P Limited Support for 3rd Party Mail in new Outlook? Using Outlook 1
O Any 3rd party tool that sync (mirror) from Outlook Calendar to Google Calendar? Using Outlook 5
T Outlook is categorizing emails incorrectly Using Outlook 0
R Legacy Outlook on Mac Email Cache Using Outlook 0
A Outlook can't remember outlook.com, Exchange password. Using Outlook 4
S Related messages show in main Outlook window vice new Advanced Find windows Using Outlook 1
H Force Outlook 2019 with GMail 2-Step to Require Login? Using Outlook 0
G Retaining Tabs in outlook body Using Outlook 2
V Setting up Outlook 2021 on new computer Using Outlook 2
G Add Map It button to Custom Contacts Form in Outlook Outlook VBA and Custom Forms 1

Similar threads

Back
Top