Tagged Questions
0
votes
1answer
117 views
vb .net using excel automation to paste data into opened workbook
Is it possible to paste data into an already opened worksheet using office automation from vb.net? (I done it using oledb but is very slow.)
Dim Folder As String = "C:\Users\gm1\Desktop\"
...
0
votes
0answers
148 views
Excel and PPT Automation in server
I have developed an ASP.NET application with following requirement.
*Requirement:*My ASP.NET application having Gridviews and Charts,I need to export these charts into PPT presentaions as a Table and ...
0
votes
1answer
388 views
PowerPoint process won't close when user closes the main window
If I create a PowerPoint application via automation, the process remains in Task Manager when the user closes the main window. I can assume this is because my application is holding a reference to ...
0
votes
1answer
283 views
App.Config for Excel Automation Add-in
I'm developing some Excel UDFs via .Net Automation Add-in (Visual Studio 2010, .Net 4.0, C#). My functions validate the parameters that get passed using EntLib 5.0 Validation block. This works fine ...
0
votes
1answer
225 views
Handling tasks in Windows 7 with Perl [closed]
I am an automation guy using vbscript and QTP. I am looking for a better scripting language for automating windows applications.( Include latest versions of word, excel and powerpoint) I am not liking ...
1
vote
0answers
433 views
Building chart in Word using C# - how to change axis text orientation?
I worked out the basics of how to build a graph in C#:
object oClassType = "MSGraph.Chart.8";
Word.InlineShape oShape = range.InlineShapes.AddOLEObject(ref oClassType);
Graph.Chart graphChart = ...
2
votes
2answers
274 views
VSTO: Can I determine if an Office document has been opened by external automation code?
I have some code in an Office VSTO addin (implemented for Word, Excel 2003 & 2007 in VB.NET) that is causing problems for some external automation code.
Is there a way I can determine whether an ...
11
votes
3answers
12k views
Microsoft.Office.Core reference missing
Using the example provided in codeproject I am struggling to work out where I can find the reference to the library Microsoft.Office.Core.
I am getting the error "The referenced component ...
1
vote
3answers
1k views
Stop Microsoft Word re-using WinWord.exe process created via COM Interop
All,
If I start an instance of a word application via COM Interop, an instance of Winword.exe is started in the background. If I then subsequently load a Word document from Windows Explorer, it is ...
0
votes
2answers
181 views
Excel process continues running
I'm calling the following method from a button click event to export a datatable to excel. After the export is completed, the excel application object is quit, released and assigned to nothing. But in ...
1
vote
1answer
381 views
Excel Automation using C# dynamics
I'm currently working on a project in Silverlight 4, where I need to export some data to Excel files.
Using the dynamic keyword and the AutomationFactory, I can automate Excel without problems.
But ...
2
votes
2answers
473 views
ASP.NET Word Documentment without Office Automation
Is there any free library available for .NET that lets you read Microsoft Word documents in ASP.NET. As the interop assemblies aren't really meant for server usage, we are looking for a free solution ...
0
votes
2answers
2k views
retrieve single cell value in Excel automation function with c#
i need to retrieve a single cell instead of Excel.Range in my method.
using Excel = Microsoft.Office.Interop.Excel;
...
public object vReadNumber(Excel.Range targetRange)
{
...
Doing ...
0
votes
1answer
519 views
Converting Word doc to tiff
I run Word 2003 in unattended process to convert a word doc file into a tiff. Word is configured to print to Microsoft Office Document Image driver and then pick up the generated file. It works fine ...
2
votes
3answers
2k views
How To Get the Range of a Page Using Word Automation
How do you find the range of page n in Microsoft Word using office automation? There appears to be no getPageRange(n) function and it is unclear how they are divided.