| Thread | Last Post | Replies |
|
| Comparing object instances | 24 Apr 2006 06:42 GMT | 2 |
(using native/unmanaged vc++ 2k5).... How do I compare one object instance to another..... like in C# *is* operator is used... how is it done in native c++. Regards,
|
| Cannot get intellisense to work with VS 2005 and C++/CLI | 24 Apr 2006 04:23 GMT | 2 |
I am new to Visual C++ (I have been using C# for the last 4 years) and would like to make the transition to C++. On my first project, I cannot get intellisense to work (either in a *.h file or a *.cpp file). I have tried troubleshooting using the methods
|
| Testing for nullptr for a ref object | 23 Apr 2006 19:20 GMT | 5 |
For a ref object x, can I say "if (x)" rather than "if (x != nullptr)" to test that x is pointing to something ?
|
| VS 2005 C++ and sphelper.h - SAPI | 23 Apr 2006 17:25 GMT | 1 |
Our applications that use this file no longer compile due to new restrictions in the VS 2005 C__ compiler. c:\program files\microsoft speech sdk 5.1\include\sphelper.h(769) : error C4430: missing type specifier - int assumed. Note: C++ does not support
|
| 10000 Interview Questions And Answers(C,C++,JAVA,DOTNET,Oracle,SAP) | 23 Apr 2006 02:06 GMT | 1 |
10000 Interview Questions And Answers(C,C++,JAVA,DOTNET,Oracle,SAP) I have listed over 10000 interview questions asked in interview/placement test papers for all companies between year 2000-2005
|
| Inherit a form from other form | 22 Apr 2006 17:33 GMT | 2 |
Is that possible, linke in C#? How? I cannot find how do it. Thanks in advance.
 Signature Leyendo:
|
| Error C3699 Indirection Caret | 22 Apr 2006 17:06 GMT | 2 |
Given the following from MSVC Help: // C3699.cpp// compile with: /clr /cusing namespace System;int main() { String * s; // C3699 // try the following line instead String ^ s2}
|
| How to hide system folder? | 22 Apr 2006 15:58 GMT | 1 |
Hi, I know IShellFolder::GetAttributesOf can get property of any sys folder. But how can I hide sys folder? which function can do it?
|
| convert String ^ in char * | 22 Apr 2006 14:23 GMT | 7 |
i'm using this code to convert a String ^ in char * String ^str = "string .net"; IntPtr p = System::Runtime::InteropServices::Marshal::StringToHGlobalAnsi(str);
|
| How to read late bound Excel worksheets collection properties? | 22 Apr 2006 14:19 GMT | 1 |
I am using late binding in a managed VC++ .NET 2003 application. I used KB 302902 (for C#) as a starting point and converted it to managed C++. I built a managed class that is intantiated by a form. The class can instantiate Excel, open a new workbook, add a new worksheet, get a ...
|
| "End of statement expected." error at Japanese message | 22 Apr 2006 07:24 GMT | 4 |
I'm using Windows 2000, English version, Microsoft Visual Studio.Net 2003. I compile a project developed for Japanese client, on which there are some Japanese messages. I have error "End of statement expected." at the line of Japanese message.
|
| proper way to pass pointers by reference from managed c++ methods to native c++ methods | 22 Apr 2006 06:10 GMT | 1 |
What is the proper way to pass pointers by reference from managed c++ calls to native c++ calls? In managed C++, I have a pointer to an array of structures, that I pass to a native c++ method by reference:
|
| Mixed mode programming problem in C++/CLI | 22 Apr 2006 02:33 GMT | 1 |
In Managed C++ in order to share the functionality of a class between its CLR code and native C++ code, in essence mixed mode programming for a class, I would design the __gc class so its corresponding __nogc C++ class would be a nested class of the __gc class. The __gc class ...
|
| Generating an application manifest with a trust level section for an administrative application | 21 Apr 2006 20:00 GMT | 11 |
Is there any way to coax the VC8 linker into generating an application manifest with a trust level section suitable for an administrative application? Or do I have to add this manually each time that I rebuild? Regards,
|
| Singleton per DLL instance | 21 Apr 2006 16:40 GMT | 2 |
I am going to develop a multi-threaded application that creates many instances of a calculator object. Consequently the DLL housing the Calculator is to be thread safe. Within the DLL i want some global singleton objects - these then become
|