| Thread | Last Post | Replies |
|
| __gc and __nogc ??? | 26 Aug 2004 00:21 GMT | 2 |
if have a __gc class with a datamember of type : a pointer to a DateTime, but I get a compiler error : __gc class Employee {
|
| How Do I create a MCPP Property which returns an enum? - My Class will not compile, can you fix it? | 26 Aug 2004 00:20 GMT | 2 |
I am trying to create a property which returns an enum. The following class does not work, can someone fix it? I am using VS2003 C++ public __gc class Drive
|
| question about HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\7.1\VC\VC_OBJECTS_PLATFORM_INFO\Win32\Directories | 25 Aug 2004 17:24 GMT | 1 |
Where do the values for $(VCInstallDir), $(FrameworkSDKDir), $(FrameWorkDir), $(FrameWorkVersion) and $(VSInstallDir) (and any I have missed) come from?
|
| Pb firing events with VC 2005 | 25 Aug 2004 14:00 GMT | 2 |
Still having problems with converting my VC 2003 project to VC 2005 beta, this time with events (using the new C++ syntax). My class defines the following event:
|
| unresolved _atexit_m with VC++ 2005 | 25 Aug 2004 11:00 GMT | 2 |
I've just installed Visual Studio 2005 and recompiled two existing projects previously compiled with VS 2003. The first project is a un-managed DLL and the second one a managed DLL making use of the un-managed DLL.
|
| Assign document for newly Created MDI ChildWIndow | 25 Aug 2004 10:28 GMT | 1 |
My application is an MDI. It has an MDI window (main window). Now, I want to create a nother MDI window CMDIFrameWnd *main = new CMDIFrameWnd(); main->LoadFrame(IDR_ANALYSE, WS_OVERLAPPEDWINDOW | 32768, NULL, NULL);
|
| Optimizing code - is /O2 faster that /Ox ??? | 25 Aug 2004 06:25 GMT | 2 |
The MSDN techdocs are somewhat limited on this and I wanted more information. Is there any resource that says definitively which is faster /O2 or /Ox and by how much?
|
| Beginner's question: How to set build number of project? | 25 Aug 2004 00:54 GMT | 6 |
Each time I right click on an exe file, say Acrobat.exe, and look at the properties page, I could see information such as company name, version and build number, etc. of the application. How does anyone do that? I've used Microsoft .Net 2003 to write my C++
|
| How compile? | 24 Aug 2004 20:49 GMT | 1 |
I compiled as following (e.g) cl first.cpp but following message ↓ Cannot open include file "windows.h" :Such a file or directory
|
| question about arrays | 24 Aug 2004 18:35 GMT | 4 |
are managed arrays of value types created on the managed heap, just as are managed arrays of reference types ? String* StrArray[] = new String* [5]; // Arrays of a Reference type int NumArray __gc[] = new int __gc[5]; // // Arrays of a Value type
|
| how to get the framework directory from native c++ | 24 Aug 2004 18:13 GMT | 1 |
what is the best way to get the path to the most recent installed version of the framework? In a managed app I could use RuntimeEnvironment.GetRuntimeDirectory() (however - I believe - this does not return the most recent installed
|
| HowTo Create Multifile Assembly ? | 24 Aug 2004 18:08 GMT | 3 |
Sun. Aug. 22, 2004 2:20 PM PT How to create multifile assembly in Managed Visual C++ ? Using VSIDE. Please do not point me to MSDN pages, I already read those pages, and it only says, that you can create, (but no info, or steps how to create?) it in VSIDE, but
|
| A copy of Msft Visual C++ 6 | 24 Aug 2004 18:01 GMT | 3 |
I'd like to purchase a copy of Visual c++ ver. 6. Can a Msft rep who reads this message please send me an e-mail or respond to this post? Thanks!
|
| using managed arrays ??? | 24 Aug 2004 15:56 GMT | 5 |
1) I find the notation for managed arrays in C++.NET very confusing : Sometimes is it not necessary to use the pointer notation ==> short pS2 __gc[] = new short __gc[MAX]; Sometimes it is !!! (aparently when declaring an array of managed types) ==>
|
| CRC32 Fun - How do I initialize a const static int array in an un-managed C++ class (VS2003/C++) | 24 Aug 2004 15:33 GMT | 3 |
I would like to encapsulate the following CRC32 routine inside a C++ un-mananged class. I am having difficulty initializing the "const static unsigned int table[]" inside an un-managed C++ class.
|