2
votes
5answers
105 views
Calling unmanaged function from C#: should I pass StringBuilder or use unsafe code?
I've got a C# program that needs to pass a char buffer to an unmanaged function. I've found two ways that seem to work reliably, but I'm not sure which I should choose.
Here's the …
1
vote
2answers
20 views
How do I get ToolStripMenuItem Shortcut Key to work when WinForms control is hosted in VB6 Form.
We have a scenario where we are exposing a set of WinForms UserControls via COM to a Legacy VB6 application. We have 3 different controls which have a MenuStrip on it that has the …
0
votes
3answers
52 views
Loading an assembly from a win32 application without having .NET framework installed
I know it's possible to run a .NET application using a portable Mono executable without having .NET framework installed but is it possible to load and use an assembly is this situa …
1
vote
3answers
42 views
What is the interop dll?
Hi guys,
This might be a bit of stupid question but i need some clarification. I have Reportwriter dll that uses crystals reports. It is written in VB6. I have to add this dll to …
0
votes
5answers
61 views
Why am I getting an Out of Memory Error doing ASP .NET Excel Interop?
This was working..and I moved the disposal code to the finally block, and now it fails every time.
I have a test spreadsheet with 4 records, 6 columns long. Here is the code I'm u …
0
votes
3answers
17 views
Way to consume a Java-Spring Service from .NET
What is the the most hassle-free (even commercial) way to consume a Java service (resides in Spring container) from c# ?
0
votes
1answer
18 views
How to display managed control on native window?
Using C++/CLI, How to display a managed control (eg. System::Windows::Forms::Panel^) on a window created in native code?
An external program calls my native method where i can acc …
2
votes
2answers
27 views
WCF Interop with PHP behind a load balancer
I'm trying to help a customer interop w/ a PHP client but we have a load balancer that is in front of the IIS farm. Because of this when you actually view the .svc?wsdl you get sp …
0
votes
2answers
43 views
Working with HResult, interop and related things in C#
Hi guys,
I am working on a project in C# to create a forms application. I would like to use IFileDialog and other functionality that is part of the native Windows API (or however …
2
votes
4answers
76 views
Add a function in my .NET application as an event handler in another .NET application
We have a .net application that we didn't develop, but use. I can tell using reflector that this application has 1) a static variable in the form main form that is a reference to …
0
votes
2answers
33 views
put wpf on a win hdl
Hi there,
i get a winHdl (which is a winForm) from a native c++ application.
Plugin implementation in c#:
public int Create(int hParentWnd ...){ ... // here i want to put wpf o …
7
votes
6answers
159 views
Is there a more painless way to call Win32 from C#?
Every few months I find myself needing to call Win32 from C#. Though I've done it a dozen times, I've usually forgotten the exact machinations, so I poke around the web or old code …
1
vote
1answer
33 views
Receive WM_COPYDATA struct in WPF or Console C# app
I am writing a C# application that needs to communicate with another application written in native C. So far I have figured out how to send messages from my C# app to the C app wit …
1
vote
1answer
30 views
With which versions of GWT does Seam work?
Hello, I recently tried to combine SEAM and GWT in a project - but failed using GWT 1.7.1 and Seam 2.1.2 CR2 and Seam 2.2.0 GA (if you have any ideas why - here is the post).
I wa …
1
vote
2answers
78 views
PInvoke - reading the value of a string field - “Attempted to read or write protected memory”
I'm having trouble accessing the some string fields in a COM interface. Calling the integer fields does not result in an error. When attempting call clientID(), deviceID() or key() …
