Asp.net - Merge Word Documents (Office Interop & .NET), Keeping Formatting?

Mar 25, 2010

I'm having some difficulty merging multiple word documents together using Microsoft Office Interop Assemblies (Office 2007) and ASP.NET 3.5. I'm able to merge the documents, but some of my formatting is missing (namely the fonts and images).

My current merge code is shown below.

private void CombineDocuments() {
object wdPageBreak = 7;
object wdStory = 6;

[code]....

I don't care necessarily how this is accomplished. It could output via PDF if it had to. I just want the formatting to carry over.

View 1 Replies


ADVERTISEMENT

VS 2008 Editing Word Documents While Keeping The Original Text?

Jul 13, 2009

Public objword As New Word.Application
objword.Documents.Open(FileName:=ofilename)

^ Showing the declaration of the word document that i wish to edit.

Dim oDoc As Word.Document
objword.Visible = True
oDoc = objword.ActiveDocument
oDoc.Range.Text = codes(j, 1) & " " & codes(j, 2)

This gets the document and adds text into it, exactly what i want it to do. But it replaces the whole document. I just want it to add text at the start of the document. Not replace the whole document.

View 3 Replies

C# - Merge Multiple <Body> (xml) Word Documents To 1 Document?

Aug 31, 2010

I have multiple <body> tags from an word document. I do this with the open xml sdk. So the new document should generated with openxml The body's comes from

WordprocessingDocument.Open("C:TempTest.docx").MainDocumentPart.Document.Body.OuterXml

I have so different body's in a list. With al different values. Changed some text in the xml. And saved them in a new list. Now must that list in an new word document. How can i do that? I tried altChunk. But my word document is always corrupt.

View 1 Replies

Specify V11 (with V11 & V12 Installed) Microsoft.Office.Interop.Word

Sep 2, 2010

I am working on a legacy VB.NET application that uses Microsoft.Office.Interop.Word, with Office 2003 installed on the server. When I publish my site, even though my config file clearly shows v11: The site will crash saying v12 couldn't be found: Could not load file or assembly 'Microsoft.Office.Interop.Word, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)

Note: I currently have Office 2003 & 2007 installed on my dev machine, also, when looking @ references I am given the option of selecting v11 or v12 (so v11 is def. there). Within a page on the site the page does an import statement for Microsoft.Office.Interop.Word. Is it possible to specify the version at this point, or any way to force it to use v11 without me uninstalling my v12?

View 1 Replies

Office Automation :: Error Creating Word Documents On Server

Jan 24, 2011

I am not an expert programmer and am just getting familiar with .NET office automation. I have two questions:

1. For me to create word documents from my code on a server, does word have to be installed on the server? My test server does not have word installed. Is there a way to have the code open word on the user's machine in this case?

2. I am trying out some code for creating word documents. It works fine on my machine. However, when I try to run it on server it gives me an error.. "Cannot create ActiveX component." Is this a permissions issue or related to the fact that the server does not have word installed?

View 1 Replies

Office Automation :: Word Table Merge Cells And MoveRight?

Feb 24, 2011

I've searched for this everywhere, but can't find a solution after trying for two days. What I want to accomplish is creating a table in Word (n-rows, and 3 cols,) (which I successfully have) and for each row that has a new date, I want to merge all three column cells just for that one row with the date. For every other row, above and below, I still want to preserve the 3 columns structure. What happens with the Merge() method is that all the rows merge, not just the row I'm currently on. I did a macro and noticed that there is a Selection.MoveRight() option I can do, but I can't yet figure out how to put all these statements together to accomplish this. When I do the MoveRight, trying many variants like the following:

oDoc.ActiveWindow.Selection.Tables(1).Range.Cells(wordRowIdx).Select()
oDoc.ActiveWindow.Selection.MoveRight(12)

I get a member cannot be found for the first statement.

View 3 Replies

FAQ - Open / View Office Documents (Word - Excel - PowerPoint) Form?

Apr 10, 2009

How do I open/view Office documents (Word, Excel, PowerPoint) in a VB.NET Form? remember to mark the replies as answers if they and unmark them if they provide. Welcome to the All-In-One Code Framework! If you have any feedback,

View 1 Replies

.net - Add A Textbox Programmatically To Another Page Using Microsoft.Office.Interop.Word?

May 20, 2012

I am able to insert a textbox into a Word document using the below code:

Dim opProcedures As Word.Shape
opProcedures = oDoc.Shapes.AddTextbox(Microsoft.Office.Core.MsoTextOrientation.msoTextOrientationHorizontal, 0, 0, 456.75, 24.75)
opProcedures.TextFrame.TextRange.Text = "Operational Procedures"

This adds a textbox to the first page of the document however even when I change the first (top) parameter I am unable to move the textbox onto the second page (only lower down onto the 1st page, any greater values than the height of the first page an it disappears).

How can I get the textbox to appear on the 2nd page of the document?

View 1 Replies

Early Binding Of Microsoft.Office.Interop.Word.WordBasic Call ?

May 9, 2012

I'm trying to call this code in VB.NET with "option strict on":

Dim application As word.Application = New word.Application
application.WordBasic.DisableAutoMacros(1)

The WordBasic object is dynamic, there is no type library available.Now the compiler will complain, because late binding is not allowed.

View 1 Replies

Error6 'Application' Is Ambiguous In The Namespace 'Microsoft.Office.Interop.Word'

Dec 9, 2009

It says .Application ambiguous Error6'Application' is ambiguous in the namespace 'Microsoft.Office.Interop.Word'.

Imports Word = Microsoft.Office.Interop.Word
oWord = CType(CreateObject("Word.Application"), Word.Application)
oDoc = oWord.Documents.Add()

View 5 Replies

Using Selection.Find In Microsoft.Office.Interop.Word To Find Tracked Changes In A Document?

Apr 15, 2009

I am currently using the code below within a VB.Net application to find specific text in a Word document. The text is surrounded by symbols represented by the character codes in the .Text statement. The code below is working fine. The issue now is that sometimes the desired text within a document has been marked for deletion and appears as tracked change within the document. I would like to find only the desired text that has NOT been marked for deletion. Does anyone know of a way to determine if the found text is a deletion?

[Code]...

View 2 Replies

"Microsoft.Office.Interop.Word.Application.ActiveDocument" Visual Basic 2010?

Jan 26, 2011

I am fairly new to programming and I am trying to create a MS Word add-in to add an xml file into the WordprocessingML package of docx files.I am currently having trouble with Microsoft.Office.Interop.Word.Application.ActiveDocument", used:Dim currentDoc As Document = Microsoft.Office.Interop.Word.Application.ActiveDocumentbut I keep getting the error: "Reference to a non-shared member requires an object reference" there.

View 2 Replies

Error : Unable To Cast The COM Object Of Type 'System._ComObject' To Interface Type 'Microsoft.Office.Interop.Word.CustomProperties'

May 10, 2009

I have been trying to use vb2008 to automatically update CustomDocumentProperties fields that I have set up within a pro-forma document. I can load the Word application and word document without problems.I want to update the CustomDocumentProperties fields with data read from a dB. To do this I am assuming that I need to iterate through the CustomDocumentProperties fields within the word document and when one is "found" that matches the data I wish to merge then assign the dB value to the field.The problem is that I am getting an exception error when I try to reference the document customdocumentproperties

"Error : Unable to cast the COM object of type 'System._ComObject' to interface type 'Microsoft.Office.Interop.Word.CustomProperties'. ...... "

my code looks like;

Dim WordApp As Word._Application
Dim odoc As Word._Document
Dim BContinue As Boolean = True

[code].....

View 2 Replies

Office Automation :: Display Office Documents To Form?

Jul 25, 2010

how do i use the webbrowser to display the word or excel docs. just like the pdf viewer... i tried the webrowser1.navigate but it didnot work, if it does its opening a new window, im using office 2010..

View 4 Replies

Office Automation :: How To Display Office Documents To Form

Nov 27, 2011

How do I use the webbrowser to display the word or excel docs. just like the pdf viewer. I tried the webrowser1.navigate but it didnot work, if it does its opening a new window, I am using office 2010.

View 1 Replies

C# - MS Word Office Automation - Filling Text Form Fields And Check Box Form Fields And Mail Merge

Sep 3, 2009

experience on how to create an engine using C# (VB.NET is okay too) that is generic enough to handle most cases of MS Word text fields I need to fill with data I'm getting from a database? In short, I'm about to embark on this little Office automation excursion and I'm hoping a little bit of feedback here.

View 2 Replies

Create A New Project, Instead Of Keeping Hard Coded Paththe 'my Documents' Gets Replaced

Jun 15, 2011

Below is an snippet from my project template. I have some classes I want to link to in the project.One of my developers created the template and I copied it to my PC.It seems to work on his, but when I create a new project, instead of keeping the hard coded path the "my documents" gets replaced.I know this is a little cryptic, but I was hoping to flesh the question out with your questions.[code]

View 8 Replies

Creating WinForm To Merge Selected Documents?

Dec 18, 2010

I want to create a program to simplify my document creation. I'm thinking creating the basic building blocks in Word 2010 would be the easiest and it would also be easy to manage in the future. I would like to create a WinForm and use some check boxes to select which items to be in the document and then have a document created from that.

I would also add some specific text using bookmarks in Word (names, address, etc..). My general thought is create several word documents as the basic building blocks that would then be merged/combined/stitched into one single document (dependent upon what has been selected), that would then be saved as a .docx and/or a pdf.

The general format would be "blurb A - product 1, product 2, ect.. - system specs". I have 14 basic blocks of information with a title, paragraph, and image. Generally each product is about 1-5 paragraphs and takes up a whole page or half a page in Word. I have never worked with a Word document via VB.NET VS2010 Pro and Office 2010.

View 4 Replies

Microsoft Office Installed - Warning 2 Unable To Find Dependency 'INTEROP.MICROSOFT.OFFICE.CORE'

Jul 23, 2010

So I have this error.

[Code]...

So I'm guessing it has something to do with the fact that I don't have office loaded on my computer. Now I have another laptop, with office that I loaded this project on, and it works fine. So do I have to load office on this computer, or can I just reference something?

[Code]...

View 8 Replies

Reading Contents Under A Particular Heading Of Word Document Using Word Interop 2007?

Jun 6, 2012

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). For example: "Introduction" is a entry in Table of content with style Heading 1. I want to read content under heading "Introduction" but not any more content (i.e not content under sub headings of Introduction) I have been trying to do this using styles/style, TableofContent, Paragraphs/Paragraph,Range. Still cannot come up with a effective solution. I am working in VB.NET in VS 2010. I am using the word 2007 object model (office 2007 interop) as [URL]

View 1 Replies

.net Open Office Documents?

Jul 7, 2010

Is There any control in dotnet in which we can view ms office documents (doc,excel .. etc

View 1 Replies

Office Automation :: Office Add-in For Word 2010 64bit?

Dec 21, 2010

I've made Add-in for Word 2007 in VS2005.It worked well with Word 2007 and now it works well with Word 2010 32 bit.However it doesn't work with Word 2010 64 bit. The installation is successful, but the ribbon button doesn't show up.

Do you have any experience with add-ins for Office 64 bit?

View 5 Replies

Insert New Page With Formatting And Bookmarks Into A Word Document Using VB Word

Jul 13, 2009

I have document, with numerous pages, that will populate at key locations using a UserForm and bookmarks. One of the pages in the document may need to be repeated. In other words, one of the pages may need to be populated more than once (and inserted successively in the document).

The troublesome page has bookmarks that will need to be repopulated with different information for every new instance within that same document.

I am considering making a table with the verbage in the "Troublesome Document" located in a Table. When I need to repopulate a new instance of that page, I think I should:

1. populate the document
2. copy and paste the wording in a new page
3. insert the new page (without bookmarks yet maintaining formatting) before the "Trouble Document"
4. repeat steps 1-3 for every necessary instance
5. delete the "Trouble Document" with the Table

View 5 Replies

VS 2005 Merge / Append Two RichTextBox's And Preserve Formatting

Jul 22, 2009

I have two RichTextBoxes, each of which can have any sort of formatting. I need to be able to take the rich text from box 2, complete with formatting, and add it to the end of box 1, preserving the formatting of both box 1 and the appended rich text.

I've not managed to find anything usefull on this anywhere apart from hints pointing to manually re-building the RTF codes for the result (but no actual VB / C# / C code to perform this or similar).

View 5 Replies

How To Backreference An Office Interop

May 30, 2011

I have Office 2007 installed on my Win7 development machine, however I want my Office-reliant VB.Net app to reference/work with, Office 2003 and above. I tried installing the Office 2003 interops redistributable but the installation tells me that I need
to have Office 2003 installed. Is there a way I can install the Office 2003 interops so that my app can have references to Office 2003 and thus work on Office 2003, 2007 & 2010?

View 2 Replies

Missing Office.Interop DLL?

Dec 2, 2011

I have difficulty locating the MS.Office.Interop.Word and .Excel DLL's in the .Net / COM Components. I successfully located and referenced the Interop.Excel component in the past few months but suddenly they are missing. What has happened or have I done wrong?

View 3 Replies

Better Option For Hosting MS Office Documents In Custom App?

Aug 5, 2010

I am currently hosting an IE Browser control in a .NET (2.0) Form and using it to load Office files such as Excel and Word thusly:[code]The hosting and loading works well except whenever I navigate to a file I am presented with a dialog that asks whether I want to save or open the file. (This is standard IE file-download behavior.) I always want to open it of course and I do not want the dialog to show.Another issue is that when I close the window that hosts the IE control and the Office doc the document does not close and remains open on disk. This means that subsequent attempts to open the same file via my app or the native office app will fail because of the sharing violation.Is there a programmatic way of avoiding this dialog and cleaning up resources afterward? I am asking for a programmatic answer because web research has only yielded solutions that entail modifying OS-level settings.

Host an Excel spreadsheet inside my application.Work rather transparently (avoid usability issues like the one described above)Avoid having to make any OS-specific changes that may affect other applications (especially icluding IE)Is zero additional cost (no licensed 3rd party libs please) Code Project and other open source resources are OK.Not mess around with the DSO Framer ActiveX control, unless a stable version is developed/discovered

View 4 Replies

Display Office Documents On A Program Form?

Jan 31, 2010

I am trying to develop a database application front end that will allow users to view (read-only) and if neccessary add selected (copies) of documents to a database. The documents can then be viewed (again read only) whilst further analysis is carried out on the document contents. Does such a control exist? I need something like a print preview which can be viewed and read.

View 1 Replies

Can't Get Microsoft.office.interop Referenced Anywhere?

Nov 5, 2010

I have been using Excel in vb.net for years and no problem but I have a new app and nothing is working. First I can't get Microsoft.office.interop referenced anywhere, which was weird. Then I can't instantiate Excel App.. Dim pExcel_App as New Excel.Application -- this gives me error "New cannot be used on an interface??But I can do this..Dim pExcel_App As New Excel._ExcelApplication -- where did this come from?Then I can't put anything into cells Dim wkbSheet As Excel.Worksheet wkbSheet.Cells(1,1) = "Title" --- this give me an error "Expression is a value and therefore cannot be the target of an assignment"

THe really weird thing is that I have an old app open at the same time that is just fine with all this code. AND the intellisense is different for each cell.The good one sets is as a range, the bad one says it is an object???I re-installed the MS PIA's but this didn't help.

View 4 Replies

Office Outlook Interop Runtime

Apr 21, 2010

I'm fairly new to development in general, so I hope this isn't an obvious one: I've been making a program that will automatically move and display emails that require attention. Everything's going well and I've managed to get most of the functionality that I want from reading the msdn library / forums.

[Code]....

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved