| Thread | Last Post | Replies |
|
| Application process keeps running after quitting and returning to | 11 Oct 2004 11:18 GMT | 1 |
I'm running Visual Studio 97 (vc++ 5.0) on Windows XP SP2 and when I run my program from inside the development environment, and then I quit it, it goes back to VC, but sometimes if I hit CTRL-ALT-DEL and look at my processes running, there is my program! Which can stop it from ...
|
| VC7.1 bug: managed call to wcschr | 11 Oct 2004 02:24 GMT | 4 |
/// Compile with "cl /Zc:wchar_t /clr bug.cpp" #include <stdio.h> #include <string.h> #define TEST const wchar_t* p = wcschr( L"aa:aa", L':' ); printf(
|
| beginners question:how to debug server component? | 10 Oct 2004 15:57 GMT | 1 |
Hello im build very simple ATL server component (takes string from client an returns uppercase string) i like to debug this string from visual studio so i could see wha
|
| Convert a managed string to an unmanaged string | 09 Oct 2004 22:51 GMT | 1 |
In keeping with my policy of always using _TCHAR*s when possible, I am trying to convert a System::String* to a _TCHAR*. When I use this (my eventual aim is to get it into a pre-allocated, unmanaged, _TCHAR* called 'error'):
|
| Byte Array | 09 Oct 2004 03:59 GMT | 3 |
I want to cast a class into a byte array. I've seen some examples of this floating around, but they all have simple data members. What happens if I cast something that has a ArrayList or an Array?? Does it loop through the array and cast them all and I end up with a big array ...
|
| binary file/o in managed c++ | 09 Oct 2004 01:12 GMT | 3 |
I'm having difficulty figuring out a simple way to dump unmanaged structure and/or class data to binary files. In standard C++: --------------------------
|
| error C2365: 'formerly unknown identifier' | 08 Oct 2004 14:49 GMT | 1 |
Was wondering if anyone could help me with this odd error: Am working in VS.Net Framework 1.1 C++. I had a function defined as void colorizeImage(). I decided I didn't need that function anymore and so renamed it to be void
|
| Object reference not set to an instance of an object | 08 Oct 2004 13:00 GMT | 2 |
Another question: I have a mixed managed/unmanaged MVC++ 2003 project and it uses a VC++ 6.0 lib file that only uses windows functionality no MFC. So far it worked fine. But somehow now I get a an error during the construction of a pure unmanaged
|
| Application icons in VC++ .NET | 08 Oct 2004 11:03 GMT | 2 |
Is there a way of specifying an icon for an .EXE in the VS settings for a VC++ .NET project? I'm sure I'm missing something simple, as I can't find anything about this. Thanks,
|
| LNK2019 Errors with Templates | 08 Oct 2004 05:09 GMT | 3 |
Im trying out VS.NET 2003 by trying to make my own single linked list library. Im trying to use templates but keep getting LNK2019 errors. Right now I slimmed down my project to just the main.cpp, linked list.cpp/h and Node.cpp/h
|
| Compiler bug | 08 Oct 2004 02:46 GMT | 3 |
In the below code, RefCntObject and RefCntCObject are automatic pointers to non-const and const objects, respectively. When the code is compiled with "cl a.cpp", all is fine, and the output is as follows:
|
| service and SetConsoleCtrlHandler | 08 Oct 2004 02:44 GMT | 2 |
on my Win2k I have a service running. Inside the service start code I use SetConsoleCtrlHandler() (this is because the service can also be started as console process for debugging). I realized that my service is shutdown in some random time (~hours) due to call to HandlerRoutine() ...
|
| read XML (unicode) data from a file by using Visual C++ .NET | 08 Oct 2004 00:38 GMT | 1 |
http://support.microsoft.com/default.aspx?scid=kb;en-us;815658 The page above solved all of my problems with one exception. When the file has strange data in it, possibly Japanese, I get the following error: System.Xml.XmlException: '☼', hexadecimal value 0x0F, is an invalid
|
| Visual C++ 5 missing help after installing Windows XP SP2 | 08 Oct 2004 00:25 GMT | 1 |
I have been developing on Visual C++ 5.0 on a Windows XP box. I installed the SP2 for XP, and now I can't get to the help file for VC, any ideas? I can't get at it from the help menu or from highlighting a function and hitting F1.
|
| File listing/sorting within a directory | 07 Oct 2004 22:55 GMT | 3 |
Perhaps this isn't really a .NET question, but I'm hoping there is an easy solution within .NET/VC++. The problem: I have a directory full of different types of data files and I need to grab the latest copy of data to load into my program.
|