Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Everything / interop

Interop

interop

Great Reads

by bChen@sh
This article explores the rules of how AddRef and Release are called in RCW and COM, which addresses the issue of RCW memory leaks.
by Andy Galluzzi
Join me to create the most advanced yet most simple to use full duplex MMF based IPC for Windows
by Lee P Richardson
Which SPA technology should you use: Blazor WebAssembly or something more mature like Angular, and why?
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.

Latest Articles

by bChen@sh
This article explores the rules of how AddRef and Release are called in RCW and COM, which addresses the issue of RCW memory leaks.
by Andy Galluzzi
Join me to create the most advanced yet most simple to use full duplex MMF based IPC for Windows
by Lee P Richardson
Which SPA technology should you use: Blazor WebAssembly or something more mature like Angular, and why?
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.

All Articles

Sort by Score

interop 

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.
by Jerry Burch
Quickly create a spreadsheet from Datatable using Interop and the Clipboard
by koolprasad2003
This tip explains how to use Word Automation using OpenXML and C# without Word Interop.
by Dennis Wu CA
A demo that generates a simple Excel spreadsheet with subscripts and superscripts
by LazyCoder0
This tip describes how to generate Excel charts from data in .NET applications using Office Automation.
by Philippe Bouteleux
How to instantiate a COM object wrapper and call a method at runtime
by HP2M
This tip covers handling two Excel lists using Interop.
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#.
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#.
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#.
by Reiss
This is an alternative for "How to Check Whether Word is Installed in the System or Not"
by Tadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)
This simple Tip will give you the Trick to convert Excel file to CSV file using Interop Services.
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.
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.
by Dankwansere
How to insert an image into an "inline shape" in Word Document using Microsoft Open XML SDK
by Igor Merabishvili
A small tip how to release Excel object after using Interop
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...
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
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).
by koolprasad2003
This tip gives you an idea about how to create Word table using C# (Word automation)