2
votes
5answers
69 views
.NET Interop IntPtr vs. ref
Probably a noob question but interop isn't one of my strong points yet.
Aside from limiting the number of overloads is there any reason I should declare my DllImports like:
…
0
votes
1answer
5 views
Microsoft Outlook View Control
I am playing with the Microsoft Outlook View control, trying to understand its capabilities, but I'm not getting very far. It shows up at design time, but at runtime it just gives an "E_CLASSNOTREG" …
1
vote
4answers
34 views
C# Outlook 2007 COM interop application does not exit!
Any ideas why the following code does not exit the Outlook 2007 process created via COM interop?
Microsoft.Office.Interop.Outlook.Application app = new Microsoft.Office.Interop.Outlook.Application();
…
4
votes
4answers
507 views
Git interoperability with a Mercurial Repository
I use GIT on a Mac. Enough said. I have the tools, I have the experience. And I want to continue to use it. No wars here...
The problem is always with interoperability. Most people use SVN, which is …
0
votes
7answers
401 views
C# write to Excel using Linq
Hi,
I'm writing an app where i need to retrieve some rows from a DB and dump them into an excel spreadsheet. I'm using Linq to retrieve these rows.
is it possible to dump these rows directly into …
1
vote
2answers
11 views
C# Outlook interop and OpenSharedItem for opening MSG files
Is there any tutorial or resource I can follow in order to use the OpenSharedItem outlook interop method. My goal is to read MSG files using it (as it can apparently do so).
0
votes
2answers
45 views
How to call win32 CreateMutex from .Net
Hello,
I've been successfully creating a .net mutex like this:
SingleIns = new Mutex(true, AppName);
for a while. It works in XP, Vista, but apparently not in Windows7. So I need to make an interop …
3
votes
2answers
74 views
Sending a struct from C++ to WPF using WM_COPYDATA
I have a native C++ application that, for the time being simply needs to send its command line string and current mouse cursor coordinates to a WPF application. The message is sent and received just …
1
vote
1answer
37 views
Best method of calling managed code(c#) from unmanaged C++
Hello,
We have developed a s/w architecture consisting of set of objects developed in C#. They make extensive use of events to notify the client of changes in status, etc.
The intention …
0
votes
1answer
101 views
+550
Transparent background for MFC-hosted Windows Forms UserControl
I am using CWinFormsControl to host a Windows Forms UserControl in an MFC dialog. I have set the property DoubleBufferd to true. According to the docs this results in AllPaintingInWmPaint and …
1
vote
3answers
88 views
Please give opinions on this hypothetical open source license.
I've concocted an open source license in my head that I feel is a good compromise between copyleft and permissive licenses. I think it extracts many of the benefits of copyleft with few of the …
24
votes
13answers
7k views
How to properly clean up Excel interop objects in C#
I'm using the Excel interop in C# (ApplicationClass) and have placed the following code in my finally clause:
while (System.Runtime.InteropServices.Marshal.ReleaseComObject(excelSheet) != …
1
vote
2answers
191 views
C# P/Invoke: How to achieve double indirection for a field of a structured parameter
I am calling into a native dll from C#. For the specific function in question, one of the parameters I need is a structure which contains a doubly-indirect field (pointer to a pointer).
For example, …
1
vote
1answer
34 views
How to determine which DLL an Excel UDF is coming from ?
Hello,
is there any way to determine from an Excel session, which DLL an UDF is coming from ?
I have a bunch of DLLs loaded by default, I wanted to determine for every UDF where it was defined.
If …
0
votes
2answers
78 views
Handling a SAFEARRAY returned from C# server.
Hi,
I need to return an array of structure (classes) from a C# library to an unmanaged C++ client. This is the function in the C# library:
[ComVisible(true)]
[Serializable]
public sealed class …
