| Thread | Last Post | Replies |
|
| Mixing managed and unmanaged code | 05 Mar 2007 18:41 GMT | 1 |
If I had two C++ classes, identical in just about every way, except that one was managed and the other wasn't, what speed benefits, or pitfalls would occur if they called native unmanaged C++ code? TIA
|
| question about variable-argument lists | 05 Mar 2007 17:35 GMT | 1 |
wstring StringFormat(wstring str0, ...) { wstring result = str0; va_list list;
|
| adding CLR support to win32 project | 05 Mar 2007 17:35 GMT | 2 |
using VS2005 I create a classic WIN32 project. Of course it creates without error, but when I change the project from "no CLR support" to "pure MSIL CLR support" I get tons of create errors. Is there a KB article that explains how to add CLR support to a WIN32 C
|
| calling win32 api from C++ forms project | 05 Mar 2007 05:59 GMT | 2 |
using vs2005, the wizard created a c++ forms project for me. Now in the form1.h file I have a menu item click handler that I would like to add some win32 api code to: private: System::Void
|
| Pasting from Clipboard into Windwos Explorer | 04 Mar 2007 17:34 GMT | 2 |
Hello! I'm writing an namespace extension in C++ using ATL. I'm dealing with files which are not on the machine where the NSE is running. I want to provide a way to copy the remote files into the local machine. I provide a DnD mechanism, by which I record the names of the files ...
|
| Help: How to pass pointers? | 04 Mar 2007 17:33 GMT | 3 |
Hi -- I'm just starting to learn about pointers and I'm stuck on something. The code that I pasted below passes a widget object to a function that changes it to a new widget object. It changes it successfully within the changer() function but once execution returns to main(), ...
|
| atoi() equivilent without exceptions? | 04 Mar 2007 17:16 GMT | 5 |
I'm a .NET newbie but have 12 years of C++/MFC. In C++, atoi() stops converting at the first non-digit, so in this code, octet will be 192: int octet = atoi("192."); // <-- note '.' at end of this string
|
| Developer's Meeting Place for Exchanging Ideas - www.developersplace.com | 04 Mar 2007 14:29 GMT | 1 |
I would like to invite you to visit this new website dedicated to all developers for all languages. Come and participate on this project that is build to contribute to this great community of developers. Come and visit: http://www.developersplace.com
|
| I am Shocked | 04 Mar 2007 07:15 GMT | 4 |
Until 6 years ago I was a C++ programmer. The last 6 years I've done something else than computerprogramming, but now I'm a bit back, learning myself C#. I cannot resist sometimes to compare these two languages (as far as I can,
|
| VS2005 breaking my builds ! | 04 Mar 2007 06:37 GMT | 4 |
I'm having problem compiling one of my projects with VS2005. The problems arise with VS2005 (apparent?) inability to compile log4cpp. Has anyone succesfully compiled log4cpp using VS2005? Here are the errors I get:
|
| Migration of VC++ 6.0 Project to VC++.NET Compilation Error | 03 Mar 2007 22:40 GMT | 5 |
I converted my VC++ 6.0 Project to VC++.NET and during compilation, I get the following error everywhere: Error 1 error C4430: missing type specifier - int assumed. Note: C++ does not support default-int g:\argusweb\source\gssutil\xmlmessage.h 20
|
| C++/CLI How to I store Associated Data on ComboBox Item? | 03 Mar 2007 16:25 GMT | 2 |
How do I store associated data on a ComboBox item (ToolStripComboBox)? The API and MFC has a (Set/Get)ItemData(Ptr), however, I do not see any such animal in .NET. Thanks
|
| program.exe.mem.xml | 03 Mar 2007 07:52 GMT | 1 |
I'm developing with VS2005 in C++, currently compiling and running in debug mode. I also have memory leak detection turned on in the run time. When I run the program, I get memory leak info in the VS Output window. I also get a file named program.exe.mem.xml created with what ...
|
| C++/CLI parameter type conversion | 03 Mar 2007 06:35 GMT | 3 |
I am trying to write a wrapper function in C++/CLI over an existing function in C++. For instance, assume the C++ function is: ComputeMedian(double* x).
|
| Can not access mapped drive | 02 Mar 2007 21:43 GMT | 1 |
My OS is Windows XP. I mapped a drive on another machine running Windows 2000. I set the permission of the mapped drive on the Windows 2000 machine to be "accessible to everyone". On the Windows XP machine I can access
|