Click here to Skip to main content
15,886,110 members
Everything / Interop

Interop

interop

Great Reads

by Leif Simon Goodwin
How to pass strings between managed and unmanaged code
by Christ Akkermans
An introduction to the strange world of mixed language programming with FORTRAN and C# .NET code
by Debabrata_Das
This article will talk about how a WCF service can be consumed by a Java client application.
by koolprasad2003
This article explain you How to protect word document using C# and Word automation

Latest Articles

by ToughDev
How to convert OFT to .NET Windows Form in VS
by William Damert
Console .NET application using Microsoft.Office.Interop.Word for keyword search
by Lee P Richardson
Which SPA technology should you use: Blazor WebAssembly or something more mature like Angular, and why?

All Articles

Sort by Score

Interop 

24 Dec 2013 by Reiss
This is an alternative for "How to Check Whether Word is Installed in the System or Not"
26 Aug 2011 by Brian C Hart
C# code to format a certain range of Excel cells using the Format As Table button -- but from C# interop code
3 Dec 2013 by Tadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)
After the tip on Excel and Word, here we will explore the trick to verify whether Powerpoint is installed in the client's system or not by C#.
13 Sep 2014 by koolprasad2003
This tip gives you an idea about how to create Word table using C# (Word automation)
19 Dec 2010 by Brian C Hart
You know that little "Merge and Center" button in Microsoft Excel? Here's how to 'click' it in C# with Excel Interop (and this carries over to VB etc, too).
17 Aug 2017 by Dennis Wu CA
A demo that generates a simple Excel spreadsheet with subscripts and superscripts
13 Nov 2013 by Mike Meinz
The COM Interop Runtime Callable Wrapper (RCW) is a "Black Box" that creates references to memory that need to be released before the called program will end.
29 Nov 2013 by Tadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)
After the tip on Excel, here we will explore the trick to verify whether Word is installed in the client's system or not by C#.
6 May 2011 by AspDotNetDev
This demonstrates how you can call a C# method in a Windows Forms application from JavaScript that is hosted in a webpage inside a WebBrowser control on your form.
19 Nov 2013 by Tadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)
This simple Tip will give you the Trick to convert Excel file to CSV file using Interop Services.
5 Dec 2013 by Tadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)
After the tip on Excel, Word and Powerpoint, here we will explore the trick to verify whether Outlook is installed in the client's system or not by C#.
7 Jan 2011 by Philippe Bouteleux
How to instantiate a COM object wrapper and call a method at runtime
28 May 2015 by koolprasad2003
This tip explains how to use Word Automation using OpenXML and C# without Word Interop.
21 Jun 2017 by Dankwansere
How to insert an image into an "inline shape" in Word Document using Microsoft Open XML SDK
23 Mar 2011 by Igor Merabishvili
A small tip how to release Excel object after using Interop
29 Sep 2015 by HP2M
This tip covers handling two Excel lists using Interop.
19 Dec 2010 by Brian C Hart
Code to call Excel Interop to take a Comma-Separated-Values (.CSV) file and suck it into your Excel workbook programmatically, and then Auto-Fit the resultant columns.
3 Dec 2013 by LazyCoder0
This tip describes how to generate Excel charts from data in .NET applications using Office Automation.
22 Mar 2011 by Klaus Luedenscheidt
Alternatively, you can kill the Excel instance. I have to maintain an application which makes heavy use of Excel. I have written a wrapper for the base functionality. In the Dispose() method of the wrapper, I use the following code to ensure Excel will be released:mExcelApp.Quit(); // My...
13 Jul 2016 by Jerry Burch
Quickly create a spreadsheet from Datatable using Interop and the Clipboard