0
votes
1answer
32 views
Marshaling Delphi 5 OleVariant to C#
I'm trying to use some legacy Delphi 5 DLLs from C# (2.0/3.5). Some of the exported functions are declared as such:
function SimpleExport: OleVariant; stdcall;
function BiDirectio …
2
votes
3answers
80 views
Are double* and double** blittable types? C#
Hello,
I have a question regarding marshalling of C++ arrays to C#.
Does the double* automatically convert to double[]?
I know double is a blittable type, so double from C++ is t …
0
votes
1answer
25 views
What’s the purpose of COM+ library applications?
When a COM+ application is created the wizard offers to choose between a library and a server application.
A server application is activated in a separate process and this can be …
1
vote
5answers
97 views
How do I properly return a char * from an Unmanaged DLL to C#?
Function signature:
char * errMessage(int err);
My code:
[DllImport("api.dll")]
internal static extern char[] errMessage(int err);
...
char[] message = errMessage(err …
1
vote
5answers
60 views
How come replacing char[] with IntPtr or StringBuilder in a DllImport return value causes my program to no longer find the correct entry point?
EDIT: I just realized this is defined as a MACRO, not a function. How the heck would I import a macro from a DLL to C#? (this may have to be a new question).
This is related to a …
1
vote
5answers
92 views
Marshalling an array of structures from C++ to C#
In my C# code I'm trying to fetch an array of structures from a legacy C++ DLL (the code I cannot change).
In that C++ code, the structure is defined like this:
struct MyStruct
{ …
0
votes
1answer
44 views
C++ Wrapper Native Interop Enterprise Scale
I want to know what is the best approach to wrapping a massive library written in C++ to make it accessible in C#.
I have done work with interop before, and I love IJW. But I am …
0
votes
4answers
104 views
AccessViolation when calling unmanaged dll
When calling an unmanaged Dll from a c# application I get an AccessViolationException. The strange thing is that the exported function has no arguments, so the problem is not in th …
0
votes
1answer
51 views
Unclear exception when compiling ASP.NET project
I have an asp.net application, with a number of referenced dll's.
Now it seems when compiling the project I keep getting this one error:
The specified module could not be found …
1
vote
1answer
57 views
Using Unreal 3 Engine within a .NET application
Now that the Unreal Development Kit for Unreal 3 engine is free I am thinking about utilizing it for an appication. Do you think it is possible to emebedd a Unreal 3 powered 3D win …
1
vote
2answers
70 views
Implement a Comet server in C#
I would like to know whether there is a way to write a comet server in C#. i have a C# code that generates data periodically, and I want to push these data to a java app. So would …
0
votes
1answer
72 views
How can i add a button to all windows explorer instances ?
Hi,
I am trying to add a button to one of the existing tool bars in any windows explorer instance.
After much research i figured out that BHO (browser helper objects) are the be …
0
votes
1answer
11 views
Office Interop Word c#.net : Copying a table at a special location
I'm currently working on tables in a Word template with Interop.
In my template I have a table which I want to copy (Copying will make it easier for me to fill in the data rather …
1
vote
8answers
125 views
communication between Java and C#
Hi,
I found out that there is a .Net toolkit called GCT - Group Communication Toolkit that is the C# version of JGroup. I want to know whether this and JGroup can be connected toge …
1
vote
3answers
161 views
How should I declare this C struct for interop?
I have to use a legacy C routine in the application I am developing. The code in here works, but I have to convert almost all the fields to char arrays in order to use it. There is …
