| Thread | Last Post | Replies |
|
| Passing array as a parameter from C# to C++ dll | 15 May 2006 07:19 GMT | 5 |
I'm using VS2005 to write a C++ dll to use some Win32 APIs, and I'm calling the dll from a C# program. I've created the following C# class that I'm using to create an array to pass to the dll. The C# program creates the array with more than one dimension, but the C++ dll only ...
|
| Wrapping a unmanaged template class in a managed generic class | 15 May 2006 05:46 GMT | 2 |
I am trying to wrap an unmanaged library in managed c++ so that I can use this library in other .NET languages, such as C#. I've been successful for the most part this far, but I'm having a hard time figuring out how to wrap template classes. I'm getting an C3231 compile error ...
|
| _HAS_ITERATOR_DEBUGGING and std::vector | 14 May 2006 22:26 GMT | 1 |
I sometimes convert std::vector::iterators to pointers by the (afaik) legal construct &v[0], e.g. in the construct below. In debug build, the program terminates, because of what seems to be part of the new checked iterators in VC8. OTOH, I thought that the code is perfectly legal. ...
|
| How to draw alpha channel icon from CImagelist to listview control? | 14 May 2006 18:23 GMT | 1 |
Hello, all: How to draw a icon of alpha channel from CImagelist to listview control on Windows XP? B.R.
|
| Referencing 2005 assemblies in 2003 | 14 May 2006 13:49 GMT | 3 |
Problem : Created an assembly in VC 2005 express but could not reference it in a VS 2003 project. I understand that 2005 targets the .NET 2.0 framework and 2003 uses the 1.1 [I'm assuming this is my problem??]. Question : Can I create an assembly in VC 2005 express that targets ...
|
| Native wrappers : COM vs Mixed assemblies | 14 May 2006 12:26 GMT | 2 |
I am new to .Net development, so please excuse me if some of the questions .... So I have Win32 library (using Bluetooth) and I have to expose its functionality to .Net developers.
|
| Implementing "Is" C# in C++, msdn article | 14 May 2006 00:20 GMT | 17 |
i've read this article http://msdn2.microsoft.com/en-us/library/85af44e9.aspx who first interest me much. I've translated it to use generic instead of template :
|
| fstream problem | 13 May 2006 23:36 GMT | 7 |
I need to read a text file, "rewind" it to the beginning and read it again. I've tried using fstream's seekg(0, ios_base::beg) method with no luck. For some reason it's still thinking it's at eof, even after the seekg is executed. I've also tried closing the fstream and ...
|
| Where's my C2061? | 13 May 2006 16:29 GMT | 2 |
arrayStr and intString are both failing a C2061 error // median.cpp : Defines the entry point for the console application. // #include "stdafx.h"
|
| how to get my system information | 13 May 2006 15:55 GMT | 1 |
i want to get my system information system name system manufacturer system model
|
| Implement for each ability in a non-generic class | 13 May 2006 14:30 GMT | 2 |
I need a class that will be capable to enumerate some internal data, then my idea is to implement "for each" loop access. Doc says that I've to inherit form IEnumerable, but then compiler says "Error 1 error C2955: 'System::Collections::Generic::IEnumerable' : use of
|
| How to get icon from shell32.dll? | 12 May 2006 18:52 GMT | 4 |
I am developing a GUI for a destop application in Visual C++ .Net 2005, I am trying to create toolbar exactlly same as windows explorer which will have default windows icons, which are in windows folder shell32.dll. please let me know, how to get and use icons from shell32.dll?
|
| InitStorage for CListBox..! | 12 May 2006 17:19 GMT | 4 |
Doesn't seems to work! Filling a CListBox with over 75,000 strings in it, took more than 5 minutes ! I tried using InitStorage( nbitems, length_item ) before filling the
|
| Auto-restart killed process | 12 May 2006 17:04 GMT | 2 |
Hey There, Can anyone point in me in the direction of what the procedure is for a code that will launch a process and have it be protected by Windows in the sense that if it is killed, it is automatically re-launched? I
|
| iostream,cons. app.,int main(){return 0;}, Won't link! | 12 May 2006 09:21 GMT | 3 |
Anybody know why this does not link? I have tried google 50 odd ways and nobody else seems to have this problem quite. It is meant to be a console application...
|