Top "Interop" questions

Interoperability is a requirement for one computer system or programming language to work with another.

Visual Studio 2010, TlbImp generates .net 4.0 interops in 2.0 projects

In a C# project we add a reference to a COM object via the Add References setup pointing to a …

visual-studio-2010 interop tlbimp
Why use FinalReleaseComObject instead of ReleaseComObject?

I know the basic difference as ReleaseComObject only decreases some counter by one and FinalReleaseComObject decreases it to zero. So …

.net com interop
Java and MSMQ

I was curious if anyone had any suggestions on a Java library that provides access to MSMQ? I've downloaded the …

java interop msmq
Accessing unregistered COM objects from python via a registered TLB

I have three pieces of code that i'm working with at the moment: A closed source application (Main.exe) A …

python com interop assemblies win32com
Referencing Google's V8 engine from a .NET app

I'm building a .NET 3.5 application and have the need to evaluate JS code on the server - basically a user …

.net javascript interop v8 serverside-javascript
Associating git commits with Team Foundation work items

Context A GitHub Enterprise installation used for development. Every developer has his own public repo, and the organization has the …

git tfs interop git-tfs git-tf
Programmatically Printing in Adobe Reader 9 using .NET Interop

I am using VB.Net WinForms. I would like to call the Adobe Reader 9 ActiveX control to print some PDFs. …

.net vb.net interop activex adobe-reader
How do you call a Scala singleton method from Java?

I'm trying to inject some Scala code into my existing Java app. (So, being said, I want some more fun). …

java scala interop scala-java-interop
Setting dllimport programmatically in C#

I am using DllImport in my solution. My problem is that I have two versions of the same DLL one …

c# .net interop 64-bit dllimport
C# Marshalling double* from C++ DLL?

I have a C++ DLL with an exported function: extern "C" __declspec(dllexport) double* fft(double* dataReal, double* dataImag) { [...] } The …

c# c++ interop marshalling dllimport