Can I call C# dll functions from C++ code?
Fri, 2 May 2008 13:45:43 -0700 (PDT)
Hello,
In C++, I can have a dll with exported functions that I can call from
other applications using LoadLibrary and a function pointer.
Is is possible to do the same with a C# dll? Can I have "exported"
functions in the C# dll that I can call from my C++ application?
I tried looking at some articles ab ...
|
vsto vs vs2008
Fri, 2 May 2008 21:08:15 +0100
Hi
1. What is better vsto or vs2008 for outlook addins development in terms of
ease of development and deployment?
2. Can vsto and vs2008 be installed side by side on the same machine?
3. Can vsto develop addins for outlook 2003 on a pc with outlook 2007?
Thanks
Regards
...
|
Property sheet on x64 causes System.AccessViolationException
Fri, 2 May 2008 12:49:22 -0700
(Vista Business SP1/x64/VS2005/.Net Framework 2.0/C#)
One of my coworkers downloaded task scheduler wrappers from CodeProject
http://www.codeproject.com/KB/cs/tsnewlib.aspx?fid=4062&df=90&mpp=25&noise=3&sort=Position&view=Quick&fr=76&select=2171861
This code has worked fairly well, until someone attempted to ...
|
Exposing a C# IENUMERABLE class as COM
Fri, 2 May 2008 12:17:13 +0200
Hi,
I don't know and find how to to Expose a C# IENUMERABLE class to COM.
I don't find help or sample in C# on the web.
I want to do Foreach on the Com Object and see the items in the debugger.
Thanks For Your Help.
...
|
Outlook Addin runs on dev machine only
Thu, 1 May 2008 10:49:42 +0200
Hi,
I have an OL 2003 Shared Addin which uses the Extensibility2 Interface
directly, no VSTO.
The problem is that it runs on the dev machine only, or a machine where VS
is installed (no matter which version 2003, 2005, 2008).
I found this fix for VS 2005:
http://support.microsoft.com/kb/908002/EN-US/ ...
|
Embedding native code in a .NET DLL
Thu, 01 May 2008 00:51:31 +0100
I would like to embed native code (such as BLAS implementations) written in
C/Fortran into a DLL that is primarily written in C#/F# without sacrificing
the ability to provide customers with a single DLL.
How can this be done and where can I find simple examples? For example, a
single DLL containing unmanaged ...
|
HELP! Setting a ListView Item Text across process
Tue, 29 Apr 2008 09:47:26 -0600
I have some questions about setting a ListView Item from a different
process. I have found that it is possible to manipulate a ListView from
another process. Using a modified version of the code found here by Chris
Taylor:
http://www.dotnetjunkies.com/WebLog/chris.taylor/archive/2004/05.aspx . I am
able ...
|
|
|
Handling unmanaged std::exception derivative
Tue, 29 Apr 2008 08:08:09 -0700
My unmanaged library can throw any of a large number of exceptions derived
from std::exception. What must a wrapper do to handle these properly? For
example, what is needed to insure that the destructor is called to release
the internal std::string?
While most of my exceptions are primarily informational (s ...
|
Using C++ unmanaged library from C#
Mon, 28 Apr 2008 14:07:08 -0700
I've written a cross-platform library in C++ for handling some external
hardware. It communicates with the hardware via a C-calling-convention
protocol library.
I'd like to make my library available to .NET users and in particular C#
programmers. What's necessary to do this?
The API's are exposed in the ...
|
pinvoke with StringBuilder[] not working for me
Sun, 27 Apr 2008 12:47:58 -0700
Hi,
From a C# program I need to access an existing DLL that enumerates the
boards detected
via a hardware probe of the system. The function that does the enumeration
expects an int *
where it stores the number of boards detected and a char *** where it stores
the name
of each board detected.
Since the ...
|