Tagged Questions

3
votes
3answers
81 views

How to declare a union in C#?

Dear ladies and sirs. Observe the following sample code: struct DDD { [MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = 512, ArraySubType = UnmanagedType.I1)] byte[] …
1
vote
1answer
25 views

Accessing protected memory in C# via COM interop

I am making a DLL "Plugin" for a EXE. The EXE calls a function in the DLL with an Object as a parameter, and goes from there. It all works fine and dandy until I split it to a new …
1
vote
3answers
34 views

Marshalling array of structures from C#.

Hey folks, I have a requirement where I need to marshal an array of structures from managed code(c#) to native code(C++). The structure is something like //need to put any attrib …
3
votes
3answers
118 views

Send message to a Windows process (not its main window)

I have an application that on a subsequent start detects if there's a process with the same name already running and, if so, activates the running app's window and then exits. The …
1
vote
1answer
42 views

How to centrally define IComparable on abstract (interface) types in F#

This question is kind of the next level of http://stackoverflow.com/questions/895769/f-set-using-custom-class -- I want to define IComparable for a generic interface. I have an ar …
3
votes
3answers
90 views

F#: Dynamically importing a C/C++ DLL

From what I have learned, to use P/Invoke in F#, the function signature has to be declared first using DllImport like this: [<DllImport("kernel32.dll", EntryPoint="CopyFile")&g …
2
votes
1answer
64 views

How can I convert scala.xml.Elem to something compatible with the javax.xml APIs?

I have a Scala representation of some XML (i.e. a scala.xml.Elem), and I'd like to use it with some of the standard Java XML APIs (specifically SchemaFactory). It looks like conve …
0
votes
2answers
20 views

C#/Access Interop DoCmd value combobox

Hi All I've succesfully connected to a Microsoft Access database through the interop/COM.. I need to put some data into a combo box and Requery so I can get the information displa …
0
votes
2answers
53 views
+200

AccessViolationException in COM control in .NET app

I'm working for a client that has a VB6 app in the migration process to .NET. Currently they have a .NET shell, but host some old VB6 controls in .NET. There's an error I stumbled …
0
votes
1answer
17 views

Preventing GetType from throwing exceptions on internal types

Is there any way to prevent o.GetType() from throwing an exception when called on an object whose type is internal and resides in another assembly? I am wrapping a COM based API …
2
votes
3answers
83 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 …
1
vote
5answers
110 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
70 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 …
0
votes
1answer
55 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 …
0
votes
4answers
118 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 …

1 2 3 4 5 47 next
15 30 50 per page