0
votes
1answer
21 views

vb.net save in word2010

Platform: Windows and Microsoft Visual Basic 2010 Express The problem: I have a Word template made in Word 2007. When the application is run in a machine with Word 2010, the SaveAs-command doesn't ...
0
votes
1answer
24 views

Office 2010 PIA not being installed

I am writing an application in VB.NET that will send emails using outlook. My problem is that I need the Office 2010 PIA to do this. The following are the steps I have already tried (I am using Visual ...
0
votes
0answers
19 views

Using CTPFactory and CTPFactoryAvailable methods (visual basic) to interact with the ribbon UI

I am using NetOffice and Visual Studio 2010 Express to develop word COM addins. Very simple I want to show a custom task pane (CTP) when a check box is ticked in the ribbon UI. NetOffice cannot ...
0
votes
1answer
55 views

Automating Word Document Processing with ASP.Net

I am trying to create a process, in my Asp.net application, that will open up a Microsoft Word template (stored on the server) and edit specific fields in the document then download the file to the ...
2
votes
1answer
51 views

better method for accenting every word in Word document?

I am new to programming, but I am trying to adapt an existing script as a MS Word 2010/2013 addin to add correct stress accentuation to every Latin word in an open document. The script "DoAccentuate" ...
1
vote
1answer
120 views

Generating replacement text from found text for Word addin, using VB.NET and Office-Interop

I need to add correct stress accents to every word in a Microsoft Word document. I have a script called "DoAccentuate" which determines the correct accentuation for any word that is input. However, ...
0
votes
1answer
117 views

want to convert pptx or docx to pdf by using microsoft.office.interop, what files should I include for distribution?

Here is a simple question. I made a VB.Net (framework4.0) software for converting pptx and docx files to PDF files. It uses Microsoft.Office.Interop.PowerPoint and Word for converting files. I want ...
1
vote
1answer
38 views

Word COM Addin : How to iterate on all parts of not consecutive selected text (Ctrl key)

I am developing a Word 2007/2010 COM Addin which helps users to apply custom styles in Word documents. For the moment I succeed to apply styles on consecutive selected text (even over multiple ...
0
votes
0answers
53 views

My VB.NET App Crashes on a PC Without Office Because I Have “Imports Microsoft.Office.Interop”

My application uses Imports Microsoft.Office.Interop to import contacts from Office Outlook. But office is not a required software for the application, as my app can make its own contacts. How can i ...
0
votes
2answers
151 views

SaveAs2 method still prompts! Why?

Context: Vb.net program Visual studio 2010 ultimate MS Word 2010 automation Microsoft.Office.Interop.Word library I'm using the saveAs2 method to save a new document I'm creating but the ...
0
votes
1answer
166 views

How to reverse all words in a ms-word document with C#?

The document formatting should not change. Nothing change other than words order. Document : Word1 word2 word3 word2... -- END OF LINE OR PARAGRAPH Word5 word1 word5 word4..... After reversing ...
0
votes
2answers
168 views

Microsoft.Office.Interop error 0x800401E3

I am trying to access Microsoft word instance through my service (windows service) but I am getting this error: Operation unavailable (Exception from HRESULT: 0x800401E3 (MK_E_UNAVAILABLE)) I ...
1
vote
1answer
758 views

How to import Microsoft.Office.Interop.Excel on a console application?

It works fine on my Website Application, but I have to use it too on console application that will run from the task scheduler. This is how I'm calling the import: Imports Excel = ...
0
votes
0answers
55 views

Manipulating 'complex script' in office API

I'm trying to use VB.net to create an office word document - Public Sub PrintDocument() Dim oWord As Word.Application Dim oDoc As Word.Document 'Start Word and open the document ...
1
vote
1answer
102 views

How to Combine MS Publisher Documents in VB.Net

The company I work for designs and manufactures machinery, and one of their biggest selling points is that each machine can be made to fit the customer's needs. Therefore, there are rarely two ...
0
votes
0answers
364 views

Setting anchor in Shapes.AddTextBox in Word 2010

I use the following method to add a textbox to the side of a picture in a Word AddIn. Sub AddTextBoxToPicture(ByVal picture As Word.InlineShape) Try Dim targetRange As Word.Range ...
0
votes
1answer
173 views

Word OpenXML wp14:anchorId attribute causing Textbox alignement bug

So. Here is a hard question: I developed a Word Plugin for Word 2007, and then upgraded it to Word 2010. It was stable in 2007, but, after the upgraded one important function stopped to work, so I ...
1
vote
0answers
335 views

Dynamically add and delete Data Validation in vb.net

I have been working on this problem for hours now. I've tried and looked everywhere but can't find the answer I'm trying to add and delete Data Validation (as well as the inCellDropdown) to a Range ...
0
votes
1answer
479 views

How to trap keypress event in MSword using VSTO?

I am new to VSTO VB.Net programming. and I am developing a word application level Addin and want to trap keypress event. I have tried various codes of hooking but none is working. I want to use ...
0
votes
0answers
248 views

.net Word Interop closing issue

I'm developing an application in vb.net that use Microsoft.Office.Interop.Word for printing an output in a Word document. If I close the application I want to close the doc (with the "Save As..." ...
0
votes
1answer
424 views

System.Runtime.InteropServices.COMException (0x80010108) when creating an instance of Excel in vb.net 3.5

So, I have a program that launches an instance of Excel. It works on my machine as well as the machines of 2 others, but when my project leader tries it, he gets the following error: ...
0
votes
2answers
501 views

getting an “object reference not set to an instance of an object” error, not sure why

Below is the full function, but this is the area of the code that I believe is causing the error: EDIT: After stepping through the function it looks like the second time around the loop taskItem is ...
5
votes
2answers
405 views

How do I programmatically drop a Milestone onto a Block Timeline in Visio

I'm trying to programmatically create a timeline and markers using the Visio 2010 COM Interops. My code is based off of Chris Castillo's 2 part blog posting (Part 1, Part 2), which is the only ...
1
vote
1answer
297 views

GetOccurrence always throws exception

I have been trying to get appointments from outlook via the Outlook interop classes. Specifically those that are reoccurring appointments. I have tried using both v12 and v14 of the interop libraries ...
0
votes
1answer
142 views

Detect random Powerpoint freezes while performing actions

I am creating a lot of Powerpoint Slides in a loop, using Interop and VB.NEt 4.0 and I have trouble solving a strange powerpoint crash. The creation of slides works well in most cases, but sometimes ...
0
votes
1answer
254 views

Distributing a .NET app with Excel interaction

I've been coding with VB2005 for some time and in the process of converting to VB2010. At the time I just cant convert this project so I'm stuck on VB2005. The project interacts with Excel 2010. On my ...
0
votes
0answers
115 views

Office Interop and winform dialog sent back or freeze

I have developed an Addin using PowerPoint interop and we have an option to save the designed presentation to an external database via a webservice. when the user hits save button we show a custom ...
0
votes
2answers
447 views

Attach binary data to Email attachment

I am trying to attach a binary data retrieved from SQL server to an email as attachment using VB.net in the office addin. I am able to add attachment if I specified the file path and file name, but ...
2
votes
1answer
177 views

Detecting tables and images in word document using office interop

I am iterating through paragraphs in a word document using word interop API. So far i did not have a problem detecting different headings by using the style object. However now i have a situation that ...
0
votes
1answer
872 views

Reading contents under a particular heading of word document using word interop 2007

I have been trying to figure out how to read paragraph content which exists a heading. The heading itself is part of the table of contents. The heading will have a particular style (say Heading 1). ...
0
votes
2answers
668 views

How to add style programmatically to Word document

I have a dynamically created textbox that opens in Word. I am trying to give it one of the default styles in Word 2010 ("Colored Fill, White Outline - Accent 1) however I have not been able to find ...
3
votes
1answer
544 views

How to add a textbox programmatically to another page using Microsoft.Office.Interop.Word

I am able to insert a textbox into a Word document using the below code: Dim opProcedures As Word.Shape opProcedures = ...
2
votes
1answer
2k views

Save XLS Using Interop Excel

The Current Setup: So, I can use the following code to save a file as an XLS: _myWorkbook.SaveAs("FileName.xls", Excel.XlFileFormat.xlWorkbookNormal) I can also use the following code to save a ...
0
votes
1answer
428 views

Any way to automate the process of opening a .mpp file and saving it as a .csv?

I need to find a way to automate the process when a user uploads a microsoft project file to a web application I already have created. The process will need to basically use the save as from project ...
0
votes
1answer
2k views

Word Automation : could not open macro storage

My application (vb.net windows application deployed via ClickOnce) uses Word to open and fill .dot templates to create new Word documents. I reference Microsoft Word 14 Object Library and uses this ...
2
votes
1answer
332 views

How does closing a windows forms applications and excel.exe processes interact (potentially through the garbage collector)?

I may be the only person still automating excel this way and I am looking at doing it in ways that better handle COM objects and such, but for now I just import Microsoft.Office.Interop.Excel and go ...
0
votes
2answers
2k views

Outlook.Application not defined

I have Microsofr Office Professional Plus 2010 version 14.0.6029.1 installed. I have the following reference in a VB project: Microsoft.Office.Enterop.Outlook The type is .NET and the ...
2
votes
1answer
389 views

Search through Global Address List

Is there a way to search for only givenName or LastName or emailaddress of a Contact in GAL?. Currently I have these code: Private Sub QuickSearch() 'Working! Dim oApp As New Outlook.Application ...
0
votes
1answer
2k views

Outlook Application - Can't get the list of folders

I've created a little program to save my emails to a Windows Folder. I can't retreive the list of outlook folders. When I check if I've selected the inbox folder, it's not! Dim app As ...
0
votes
1answer
89 views

MS Office 2007 How can I track office's document changes?

The Office 2007 interop API doesn't provide any event on document changes. How can i get an event for each modification that happens ? (like OnDeleteSlide, OnAddSlide, etc..) I think to get a hash ...
2
votes
1answer
238 views

How to detect if MS Runtime or Office is installed on computer on application stratup?

I have a WinForm program developed in VB.Net with Visual Studio 2005. The program needs Microsoft Office Runtime installed atleast on the computer to allow the application to run without any errors. ...
0
votes
1answer
823 views

VB.net Office Solution - Accessing value in named Range in a Worksheet

I'm working on converting an Excel VBA project to a VB.net Office Solution. In VBA accessing a named range within a sheet was pretty easy. Sheet1.Range("NamedRange") would give you the value in ...
2
votes
2answers
980 views

Excel interop moving/setting image location

We're exporting a set of data using .net interop to Excel and our template file contains some images. Depending on the amount of columns we're exporting we want to position the image X pixels left of ...
2
votes
1answer
366 views

Excel data export fixing number errors/removing green triangles

After exporting data using a third party component the data in the excel sheet isn't type correctly. Excel thinks that some values are string while they are numbers and a little green triangle shows ...
2
votes
2answers
1k views

VB.NET Microsoft Office Interop Bookmarks

I am working on a project which will include automatically filling out some templates. I plan to use word bookmarks to create the templates and then fill them in via VB. This would be no problem, ...
4
votes
2answers
2k views

ASP.NET Export to Excel - Lock Cells

I'd like to export a table I have on my webpage to an Excel file and lock some cells in the new file. Here is my current code: Protected Sub btnExportToExcel_Click(ByVal sender As Object, ByVal e As ...
0
votes
2answers
1k views

Word Interop: setting doc.Bookmarks(“BookmarkName”).Range.Text causes watermark and other elements of template to disappear from document

I am automating Word from VB.Net. I open a document by: Dim msWord as Word.Application = CreateObject("Word.Application") Dim doc As Word.Document = msWord.Documents.Add(Template:=Path) where ...
2
votes
1answer
240 views

access the list of words of a word document from multiple threads

I recently had some problems with the performance of the Word object model. In an add-in that I wrote for Word I need to parse through all the words of a document and replace some of them or ask the ...
1
vote
1answer
109 views

Invalid word list returned by Word

In an Word addin, I'm using this.Application.ActiveDocument.Words; to get a list of all the words in the curret document. Now when I parse this list, I found the ,, . and \r are also in this list. ...
2
votes
3answers
3k views

List fonts used by a Word Document (faster method)

I am working on process for validating documents to make sure that they meet corporate standards. One of the steps is to make sure that the Word document does not use non-approved fonts. I have the ...

1 2