Tagged Questions
0
votes
1answer
26 views
Merge and Split Word Documents using Microsoft.Office.Interop.Word in C#
I need to merge many Word files into a single file, send it for a revisor and split it again to same separated files. There is about 200 small Word documents.
So, when I'm doing the merge I need to ...
0
votes
0answers
42 views
Interop.Word Documents.Open stuck
I have same application on two different machine. On first machine all work fine, while in second machine I have a problem.
Debugging code I can see that when Interop.Word Documents.Open is called ...
0
votes
0answers
27 views
Interop.word addpicture method not displaying image
I'm attempting to generate a word document in VB.Net with a logo in the top left, and the addpicture method I'm using is running successfully (not generating errors), but no image is being displayed ...
0
votes
1answer
62 views
Share Workbook getting checked on exporting excel from asp.net c#
How to uncheck "Allow changes by more than one user at the same time." in Share Workbook in excel while exporting the excel from c#
I am using "Microsoft.Office.Interop.Excel" for exporting the excel
...
0
votes
1answer
98 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 ...
1
vote
2answers
87 views
Word automation server-side not working
PREFACE: Yes, I know that Microsoft does not recommend this. However, this server is internal-facing in a heavily restricted VLAN.
The goal is to automatically generate specific types of reports ...
0
votes
2answers
115 views
excel interops OK with Excel 2003 with 'Office 2007 Compatability Pack'?
I'm maintaining a web-app which currently references Interop.Excel.dll (v 1.5.0.0).
The Interop.Excel.dll been used to access .xls files under Excel 2003 and then, subsequently, .xlsx/m files under ...
1
vote
0answers
62 views
Interop service error occured when using InternetExplorerClass
i am trying to deploy an asp.net web service application to IIS 7.5. The application used .Net framework 3.5. dev machine is win 7 64bit. i have used following code snippet to create HTML and then ...
0
votes
3answers
170 views
open word document corrupt
I'm trying to send a Word document (generated in ASP .NET server and Microsoft.Office.Interop.Word) to client side, but everytime I try to open in client side using IE9, it says that it can't open it ...
0
votes
1answer
52 views
How to set Print Design as default View in Word using Microsoft.Interop
I have a Word document that it's filled with HTML code and I have seen that everytime I open this document the default View is "Web Design" and I would like to knowh if there is anyway to set "Print ...
0
votes
1answer
98 views
Generating a TOC in Word filled with html source in ASP.NET
I've been assigned to create a TOC (Table of contents) for Word document which it's filled with HTML code dynamically base on several information obtained from database and with a specific design, and ...
0
votes
3answers
212 views
Interop Excel not closing process
I have been struggling with this problem for a couple of days, I have made reasearch and applied all the suggestions I found on various forums but I'm still unable to solve it.
My problem is with ...
0
votes
1answer
115 views
Will excel file generation process run on webserver risk file locks?
I am wondering if I need to do something(threading etc.) to preclude my file generation failing due to more than one user attempting to run the generation process simultaneously.
If there is a ...
4
votes
1answer
252 views
Retrieve task specific to user from outlook using c#
I'm using the below code to fetch tasks from Outlook 2007.
public class c_tasks : IDisposable
{
private Microsoft.Office.Interop.Outlook.Application objOutlook = null;
private ...
0
votes
1answer
841 views
how to programatically save a Word 2007 document as a PDF document in asp.net?
In my Asp.net web application, i have to convert one docx file into pdf file programatically.I have used microsoft interoperability word package and using the method saveAs() method.
This is my C# ...
4
votes
2answers
406 views
Application not responding when opening a Word File in asp.net?
I want to open one docx file and then convert it into pdf file in asp.net using Microsoft.Office.Interop.Word package.
This is my code written in asp button click event...
object fileFormat = ...
1
vote
1answer
173 views
Is there Any way to change the colour of an Excel Cell using C#?
I am working on an ASP project where I need to Change the color of the cells based on some validation Checks and return it to user.
Currently I have successfully Implemented this functionality using ...
1
vote
2answers
583 views
Error when trying to open PowerPoint programatically
I have a method that uses Microsoft.Office.Interop.PowerPoint.Application interface to convert PowerPoint presentation slides into a jpeg files. In a serivce application that runs on Windows 2008 ...
0
votes
1answer
292 views
Application hangs forever when opening a Visio document
Here's my small bit of code.
protected void ViewVisio(string url)
{
// open document
Microsoft.Office.Interop.Visio.Application visApp =
new ...
0
votes
1answer
381 views
System.Runtime.InteropServices.COMException: There is a file sharing conflict. The file cannot be accessed as requested
I get this error when I attempt to open a Visio document and save it as a pdf:
protected void ViewVisio(string url)
{
string pdfFile = Server.MapPath("/Files/test.pdf");
...
2
votes
0answers
450 views
Error creating Visio object: “Retrieving the COM class factory for component with CLSID {…} failed due to the following error: 80080005.”
So I have an application that is converting different Office file types to pdf, and one of the file types is Visio. I'm also doing Excel and Word Doc files, which are working correctly.
I get the ...
0
votes
2answers
974 views
Deploy Office.Interop.Word Word 2010 on Server 2008 and calling methods from ASP.NET
I want to deploy Microsoft Word 2010 and Microsoft.Office.Interop.Word on Microsoft Windows Server 2008.
The user (just a few) visits an .ASPX page. Data is input there or selected from the database ...
5
votes
3answers
935 views
Is there any way to convert Microsoft word document to notepad file .txt formate?
I try this code
string[] ext = att.Name.Split('.');
string file = ext[0].ToString();
object Target = file + ".txt";
object nullobject = System.Reflection.Missing.Value;
...
1
vote
1answer
383 views
Why is my Excel office object leaving behind EXCEL.exe processes? [duplicate]
Possible Duplicate:
How to properly clean up Excel interop objects in C#
I have an application that uses Office Interop libraries for C#.
This library is called from an ASP.NET application ...
4
votes
2answers
7k views
Download EXCEL file from ASP.NET page without Generating physical file on server (On The Fly)
I am trying to export C# DataTable to EXCEL file on the fly (without creating physical file) using Microsoft Office EXCEL INTEROP and download it through asp.net webpage through Response object. I am ...
0
votes
1answer
878 views
Accessing Interop.office.excel library from asp.net web application
i have an asp.net web application and deployed on web server. in a scenario i have a fixed format excel sheet which is on server in a web folder. at runtime i m writing in cell with the help of ...
2
votes
2answers
1k views
Exporting Excel file to PDF - getting stuck trying to close Excel file
I have a function that takes a url to an Excel file, and then exports it as a pdf:
public static void ExportFromExcel(string url)
{
// Create COM Objects
Application excelApplication = new ...
0
votes
1answer
972 views
How to copy rows from a table to another table in Word 2007 using interop and C#
I have a master table in one word document.
First column of the table has keys. I have to create another table based upon the keys (rows) selected by the user.
The user can select a key (row) more ...
1
vote
1answer
262 views
Word ActiveX control - Can I intercept SaveAs?
In our intranet application we are generating and displaying word documents. Users can edit them and send modified to server. After we generate documents we save the path to documents to later send ...
2
votes
1answer
417 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
2answers
333 views
Reading word input fields?
Ok so im trying to make a word doc that contains input fields. When the user is done and sends to document to the server i would like to read all theese fields and skip all the rest..
I'm having ...
2
votes
1answer
1k views
ApplicationClass Documents.Open returns null for ASP.NET site on 64bit system
I have a problem with opening word document from ASP.NET site. The solution works fine on Windows 2003 Server, but doesn't work on Windows 2008 server x64 and Windows 7 x64.
To simplify the solution ...
7
votes
2answers
1k views
Office documents to PDF
I have seen a couple threads about this, but am not getting very straight answers in my searching. I have a web application that needs to take in doc, docx, xls, xlsx files and convert them into PDF. ...
0
votes
0answers
445 views
My ASP.NET web app can not read the uploaded excel file on the server using Office Interop
Microsoft.Office.Interop.Excel
My C# ASP.NET web application designs to:
1. upload excel file to the server
2. read it on the server
3. show content on the web browser
I can upload file to the ...
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 ...
1
vote
1answer
1k views
Format the body of the outlook appointment item
I am trying to create an outlook appointment from an ASP.NET web site version 2.0. I am making use of the interface Microsoft.Office.Interop.Outlook to create the appointment. But my exact requirement ...
0
votes
0answers
982 views
Using Microsoft.Office.Interop.PowerPoint to generate print dialog
how to print a slid show with print dialog by using Microsoft.Office.Interop.PowerPoint namespace.The power point application should not be seen on the screen.
I tried the following code and get ...
0
votes
1answer
176 views
Remote web site day and month reverse when less than day 12 in Excel?
Local machine visual studio day and month are normal in format dd/mm/yyyy.
But after deployed to remote web site, saved Excel using C#, less than day 12, become mm/dd/yyyy.
Actually the code is to ...
13
votes
2answers
14k views
Accessing Office Word object model through asp.net results in “failed due to the following error: 80070005 Access is denied.”
I have developed a website that allows users to upload office documents then uses the office object model to convert the document to an HTML file that it then displays in an iFrame.
I have, of ...
0
votes
1answer
346 views
What is the most elegant solution for generating PowerPoint slides online? [closed]
I would like some advice on the following please. We have an ASP.net site where we need to generate PowerPoint slides of the data. The slides will need to include charts and tables.
I have come ...
3
votes
5answers
5k views
Problems with office automation in asp.net. I can use alternatives such as open-office, if I knew how
I have a ASP.NET 2.0 web application that should upload a ppt file and then extract its slides to images. For that I have imported office.dll and Microsoft.Office.Interop.PowerPoint.dll assemblies and ...
0
votes
1answer
224 views
Best solution for exporting Word documents to PDF programatically (without using a “software printer”)?
I'm looking for a way to export a Word document as a PDF. I would like to do this without the use of a "software printer" (such as CutePDF, etc.) and stick to reference assemblies if at all possible. ...
2
votes
1answer
4k views
Merge Word Documents (Office Interop & .NET), Keeping Formatting
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 ...
3
votes
7answers
1k views
Excel file generation on server without Excel installed
I am using Microsoft.Office.Interop.Excel and generating Excel files using the SaveAs method. This all works correctly on computer with Excel installed. However, my server does not have Excel ...
1
vote
2answers
1k views
Open/handle Word documents like SharePoint
Could anyone point me in the right direction when it comes to handling Word documents (.docx) on the server using asp.net.
I know I can write to and read the .docx document using the API provided.
...
6
votes
9answers
3k views
Alternative to Office Interop for document generation
At the moment we're using office interop to generate documents from templates in office 2003 (word, excel & powerpoint). This seems to be rather frowned upon (see ...
0
votes
5answers
3k views
Office Interop with 64bit Windows in ASP.NET
I'm trying to do office 2003 interop using C# ASP.NET on a server running Windows 2003 64 bit (I'm running IIS in 32bit mode though) and getting error messages like:
The machine-default permission ...

