5
votes
2answers
68 views
How to disable security pop ups of MS Outlook in C#?
How to disable security pop ups of MS Outlook using C#?
I am getting the security pop up, while trying to initiate outlook task to be created using my c# application. (Using Micro …
4
votes
1answer
523 views
How do I read the value of a checkbox in a word (*.doc) file in VB.net using a Range object?
How do I read the value of a checkbox in a word (*.doc) file in VB.net using a range object?
This is what I have so far:
Dim app As New Word.Application
Dim doc As Document
doc = …
2
votes
2answers
504 views
.NET/COM Interop problem - opening Outlook 2003 Send Mail dialog
We have a WinForms app, written in VB.NET (CLR 2.0), that does a lot of Outlook-related stuff. One of the things we do is programmatically open up a new Outlook 2003 'compose new …
1
vote
1answer
8 views
Get email folder from MailItem via MAPI interface
I'm creating a program to automatically generate reports from incoming email attachments and it is almost complete save for one area. The incoming emails are automatically filtered …
1
vote
2answers
66 views
How can I create an Outlook PST file using .Net?
I'm writing an app that will manipulate Outlook data. I want to make a backup of that data first and am hoping I could just loop through the contact/calendar items, etc and write …
1
vote
0answers
171 views
Excel & WPF modal form
I've got this situation. (.net 3.5)
A Winform application that with OleAutomation and Office Interop create an excel, a toolbar and handlers for buttons in the toolbar.
Now we've …
1
vote
0answers
86 views
Capturing Word document filenames through automation through C#
I am using word to generate letters for my application. However, I would like to capture the filename and location that the user has saved to and send/pass this filename and locat …
1
vote
5answers
542 views
Best way to extract data from Microsoft Word
The release notes of a software have some important data that I would like to extract in every release. Is there a way to extract certain information from Microsoft Word?
The app …
0
votes
0answers
13 views
How can I get Outlook Interop NewMailEx to fire on subfolders of the Inbox?
I use the NewMailEx event to capture incoming emails in my C# program but it does not seem to fire when an email is automatically routed by outlook to a subfolder of the Inbox. Is …
0
votes
0answers
11 views
word 2007 ContentControl.SetPlaceholderText maximum string size
I am planning to set the text in a content control, by using the Word.ContentControl.SetPlaceholderText() method:
string myText = "Hello World!";
Word.ContentControl ctrl;
ctrl.S …
0
votes
0answers
25 views
How to import Microsoft Office constants (msoTrue, ppLayoutText…) into LotusScript?
I am trying to programmatically make a Powerpoint presentation from the contents of a Lotus Notes document. This is relatively straight-forward using CreateObject("Powerpoint.Appli …
0
votes
1answer
8 views
Invisibly marking up text in a word document
I wan't to build a word 2007 add-in that allows users to:
Hilight pargraphs etc. of text in a word document.
Click a toolbar button or select an option from a right-click menu to …
0
votes
0answers
28 views
MS Powerpoint Automation with Reflection
I need to save powerpoints as HTML with c#. I also need to turn on animations with the 'ShowSlideAnimation' property. The first code block works fine, but when I duplicate the co …
0
votes
0answers
32 views
Error with Excel Automation/Office Interop for Microsoft.Office.Interop.Excel.WorkbookClass.ResetColors()
I've written an application that converts 1000s of Excel documents into PDFs (I know this is a slow method, but I'm not worried about speed), using the same technique as this, but …
0
votes
1answer
95 views
C#: Create/Insert Excel 2007 charts into Word 2007
How do you create and then insert an Excel 2007 chart in Word 2007 with office interoperability?
Important: I do not want to save an Excel file to create a chart.
