| Thread | Last Post | Replies |
|
| Help With Error | 20 Aug 2003 21:27 GMT | 1 |
I am getting a Debug Error when running my dotnet program using managed c++ and csharp. The error is: "Invalid allocation size: 429467251" "Press retyr to debug the application"
|
| Changing Contents of a String with PtrToStringChars | 20 Aug 2003 19:53 GMT | 5 |
What should happen if String contents are changed like below? The contents do change and nothing crashed or anything. String* str = S"hello"; Char __pin* ps = const_cast<Char*>(PtrToStringChars(str));
|
| .NET Debugger for C# | 20 Aug 2003 15:15 GMT | 2 |
Just in the debugger and in the Watch window, I think it would be nice to have it automatically use intellisense to expannd members when typing in a new object to watch. Ie., I have a MemoryStream object called ms and i type in ms. , after i
|
| Will there be a VC .Net exam coming out anytime ? | 20 Aug 2003 12:26 GMT | 1 |
i know c# is the "in" language, but i'd like to stick with what I know. anyone know if and when to expect a VC .net exam ? thanks,
|
| MFC app using Managed extensions?? | 20 Aug 2003 10:25 GMT | 1 |
Hi Sirs Anybody knows how to listen for an event in a managed component used in a MFC app with managed extensions? regards Morten
|
| COM | 19 Aug 2003 18:09 GMT | 3 |
Does anyone know how to access a COM component from VC++ 7??? Thanks for any help, and sorry if this is an inappropriate place to post this question, but I did not know which user group to post it on.
|
| Bug? Return value of type bool returns always true? | 19 Aug 2003 14:53 GMT | 1 |
I have a managed code function calling a unmanaged code function which returns a "bool". Obviously the return value is always "true", if i am not running the code in the debugger. If i run the code in the debugger, everything works fine.
|
| Managed String To LPCSTR | 18 Aug 2003 15:57 GMT | 2 |
I want to read from an ini file : System::String* windowsFolder = System::Environment::SystemDirectory; System::String* iniFile = System::IO::Path::Combine(windowsFolder, "My.ini");
|
| Convert string from String | 18 Aug 2003 14:37 GMT | 2 |
how can i convert a String to string format.
|
| Namespace/Template member initialization issue | 17 Aug 2003 22:33 GMT | 2 |
I am having a problem writing a constructor/member initialization with VC.NET7.1. Here is the code: ---
|
| Compile error | 17 Aug 2003 21:19 GMT | 1 |
I keep getting the message and unable to compile my source file. "No compile tool is associated with the file extension" Any idea !!
|
| Revert project .NET -> 6.0 | 17 Aug 2003 18:29 GMT | 4 |
If I have a VS.NET project/solution for C++ (.vcproj and .sln), how can I convert this back into a VS 6.0 project/workspace?
|
| Starting VC++.net programming | 17 Aug 2003 15:28 GMT | 1 |
So far I have mostly worked out the syntax of C++.Net, but is there a recommendation of some reading material other than the online docs that I can use to ensure I am on the right track?
|
| C2621: A union member cannot have a copy constructor | 16 Aug 2003 01:08 GMT | 2 |
VC++.NET gave me Compiler Error C2621, which states, "A union member cannot have a copy constructor." Yikes, that can't be true! As I understand it, *all* class objects have copy constructors, since if they
|
| memory leak dump reporting wrong file, line number | 15 Aug 2003 17:44 GMT | 1 |
I have been trying to get _CrtDumpMemoryLeaks() to report the allocation point file and line number in my source file. Instead it always reports the allocation occurred in crtdbg.h, line 692. I would like it to report my source file name and line number. What am I missing?
|