Most voted "interoperability" questions
Interoperability is the ability of a system to communicate transparently (or as closely as possible) with another system (similar or not). If the question is not about "Interoperability", do not use this tag, even if you are applying the concept of "Interoperability" in your project.
Learn more…13 questions
Sort by count of
-
11
votes2
answers1232
viewsUsing Java together with C
I am working on a micro controller project. My source is all in C however I would like to interact with this program using Java. Would that be possible? For example: The C program executes…
-
9
votes4
answers31971
viewsCan I write Javascript in PHP?
I can write in php the tag html<script> and inside write the Javascript script </script> using echo? If I do for example echo("<script> var a = 'texto';</script>"); This is…
-
9
votes2
answers11213
viewsIs it possible to create a C/C++ app for Android?
I want to create an application for Android using the C or C++ language. What are the advantages and disadvantages of this?
-
8
votes1
answer521
viewsC++ with C#, is it possible?
I have a C++ project using visuals on it using wxWidgets. I was hoping to transfer the look of the project to C#. It is possible to have the programming of the functions in C++, but the programming…
-
8
votes1
answer515
viewsWhat is COM (Component Object Model)?
I was reading this question1 here on the site and I have sometimes come across the term "objects WITH". A brief survey showed me that WITH that is to say Component Object Model, but I couldn’t…
windows language-independent interoperability componentasked 7 years, 7 months ago Jéf Bueno 67,331 -
4
votes1
answer159
viewsHow do IDE and compiler integrate?
Taken from here: What is a programming language, IDE and compiler? In general the compiler is a console program, but there are cases that they are libraries that can be used in conjunction with…
-
2
votes1
answer463
viewsRun Lua code block inside C++
How do I run a Lua code block inside a C function++? The idea would be something like: int main() { tipodavariavel script; script << "print('Ola mundo')"; executar(script); return 0; }…
-
2
votes1
answer313
viewsInterop.word, find and replace, error:" The string parameter is too long."
I am using a template to create a document, I open a document that would be a template and use find and replace keywords that is in this document and soon after saved on my desktop as another…
-
2
votes1
answer86
viewsWhat the hell is marshaling?
Whenever I see signatures of P/Invoke full of Marshaling attributes I always remove one by one and testing if this causes any error, most of the time I end up with a signature with no attribute, no…
-
1
votes0
answers1001
viewsimport methods from an unmanaged Bematech DLL c#
I need to use a dll provided by Bematech with functionalities of a non fiscal printer. The example they provided brings the following code: [DllImport("MP2032.dll")] public static extern int…
-
0
votes1
answer71
viewsIterate Activex object collection with latebound Interop in c# (Command)
I need to iterate collections of COM+/Activex objects with latebound in C#. Right now my need is to iterate the collection of Activex objects COMAdmin.COMAdminCatalogCollection, return of the method…
-
0
votes1
answer70
viewsPrintout from Microsoft.Office.Interop.word.dll only performs 1-page document printing
Good morning guys. I’m using the lib Microsof.Office.Interop.Word.dll to carry out the printing of a word document. When the document has only one page, the printing works normally. The problem is…
-
0
votes0
answers25
viewsHow to use a C# DLL in C++ using COM
In my project I am developing interoperability between C# and C++ in a single Library. In C++ my C++ functions and functions could bring to C# while C# methods could bring to C++, for example…