2
votes
3answers
83 views
Managed C++ to form a bridge between c# and C++
I'm a bit rusty, actually really rusty with my C++. Haven't touched it since Freshman year of college so it's been a while.
Anyway, I'm doing the reverse of what most people do. Calling C# code …
0
votes
1answer
64 views
Sorting a listview (Win32/C++)
I'm trying to sort a listview when the user clicks on the column header.
I am catching the LVN_COLUMNCLICK notification like so:
case LVN_COLUMNCLICK:
{
NMLISTVIEW* pListView = …
0
votes
0answers
10 views
CLR internals / Rotor / Shared Source CLI 2.0 Book release date?
Is anyone aware of if/when this will actually be released as hard/soft back? A draft can be downloaded from Ted Newards blog but I can't seem to find anything relating to a release date.
1
vote
2answers
44 views
Setting a column style? (Unmanaged c++)
I'm currently able to set a listview style VIA the ListView_SetExtendedListViewStyle method, however this makes all columns have the same style. My goal is to only modify one column (to basically have …
1
vote
2answers
22 views
DirectX managed or unmanaged?
I need basic information about DirectX. Is it a managed API or Unmanaged? Can someone provide me some link etc. explaining this?
0
votes
0answers
4 views
Shouldn’t NetUserModalsGet() tell me what domain a machine is part of, and where the PDC is?
This question is third on a series. Thanks to Gonzalo and Mattias S for helping me work out the kinks of calling NetUserModalsGet() from C#. This question, unlike the others, isn't really C# specific …
-1
votes
3answers
39 views
Combo box inside of list control? (Unmanaged C++)
I'm using unmanaged C++ and I was wondering if I could embed a combo box inside a column of my List View. I have tried googling for information, however I keep finding C# articles on the subject.
It …
0
votes
4answers
27 views
Getting started with unmanaged Windows application?
The app I am thinking about is something like an email reader (UI intensive). Is MFC the best/only way to go? Are there any other development environments for this other than Visual Studio? Are there …
0
votes
1answer
31 views
NetUserModalsGet() returns strings incorrectly for C#.NET
EDIT: Yet another followup at http://stackoverflow.com/questions/1799742/shouldnt-netusermodalsget-tell-me-what-domain-a-machine-is-part-of-and-where
Thanks to Gonzalo's help, I'm able to use the …
0
votes
2answers
21 views
How to call NetUserModalsGet() from C#.NET?
EDIT: followup at http://stackoverflow.com/questions/1791377/netusermodalsget-returns-strings-incorrectly-for-c-net
I'm struggling with the DLL declarations for this function:
NET_API_STATUS …
0
votes
0answers
17 views
Having problem dynamicaly invoking unmanaged VB COM dll from c#?
Hi,
I have a problem calling unmanaged VB COM dll from c#. This is dynamic invocation using loadLibrary and GetProcAddress.
I can successfully loaded the dll using loadLibrary , but the …
0
votes
0answers
11 views
Using SYSTEM namespace in the unmanaged code
Hi,
I want to use System namespace in my unmanaged(C++) code without changing the Clr(common language run time support) settings, to check files security permissions.
Is it possible that we can do …
0
votes
1answer
62 views
How to set the culture info in unmanaged C++?
Hello,
I got a program written in unmanaged C++, I need to get the cultural info from the system and set that info to the current execution thread in my c++ application.
Thanks.
1
vote
5answers
112 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);
This returns an …
0
votes
3answers
93 views
C# delegate with string reference to c++ callback
I wrote a C# application that uses an unmanaged c++ dll via managed c++ dll.
In the unmanaged dll, there's a callback that one of its params is std::string &.
I can't seem to find the right way …
