| Thread | Last Post | Replies |
|
| Arguments to String::Format | 08 Aug 2003 22:08 GMT | 1 |
I have the following code: Trace::WriteLine(String::Format(S"{0} {1} {2} {3}", Marshal::PtrToStringAnsi(s->Line1), Marshal::PtrToStringAnsi(s->Line2),
|
| templated member function fails to compile when name duplicates existing template parameter | 08 Aug 2003 19:47 GMT | 1 |
I've been having problems when a templated member function has the same name as ANY previously defined template parameter. Here's the simplest case that demonstrates the problem. This fails to compile under VC++ version 7.0
|
| Getting a return code of 128 from ANSI C function - What does 128 mean? | 07 Aug 2003 21:36 GMT | 2 |
In our C++ program, we are using the system call to execute another C++ program synchronously. The program executed by system runs without error and returns back a 0.
|
| migrating C++ to C# | 07 Aug 2003 19:45 GMT | 1 |
Is there a tool avaialable to convert C++ and VB COM+ components to C#? Thanks, Johnson
|
| event handler with VC++ NET | 07 Aug 2003 18:39 GMT | 1 |
In VC++ . NET designer, if I double click on a button on my form , the IDE generates an event handler for Click event. Is there a way to generate event handler for other events
|
| VS.NET 2003 BUG? | 07 Aug 2003 14:08 GMT | 2 |
I am using boost::bind from boost 1.30.0. When I type "boost::bind(", the IDE stopped responding. Is this a known bug?
|
| LNK2005: "void __cdecl operator delete(void *)" ...... | 07 Aug 2003 10:45 GMT | 2 |
My hear is dropping out of these linker errors of VC++ .NET. :-( I try to create a mixed managed/unmanaged .NET dll to be used for my futur projects, but I always bump in a linker error and no way to get around this...
|
| cast System::String* to LPTSTR | 07 Aug 2003 06:49 GMT | 3 |
Help please... i am VERY new to the managed C++ and i need to take a System::String* and cast it to an LPTSTR how might i do this? I have searched the web and groups but cannot find any examples. -thanks
|
| A question about Pointer And Reference | 07 Aug 2003 01:42 GMT | 5 |
I saw a sentence : int a = 47; int* ipa = &a; Then ipa contains the address of a.
|
| Debugger does not load the source code for virtual methods | 06 Aug 2003 18:44 GMT | 1 |
I've got a managed class , inside which I'm instantiating an unmanaged class. If that class has some virtual methods, then while debugging I couldn't jump into the source of that virtual method. I can go into the source of other non virtual methods of the same unmanaged class.
|
| LNK1104: Libcimt - Finding references to Old STL vs. New STL in libs | 06 Aug 2003 16:49 GMT | 3 |
I'm trying to migrate a VC++ 6 project to VS .NET 2003, and have hit the LNK1104 - libcimt.lib problem where there's some code still referencing the old STL library. I've verified all our code uses the new STL headers.
|
| VC7.1 Problem | 06 Aug 2003 11:10 GMT | 3 |
template <class _CharT> class Error; class Y { public:
|
| SetupDiGetClassDevsEx in VC++ | 06 Aug 2003 08:47 GMT | 3 |
I am trying to use SetupDiGtClassDevsEx from Visual C++. I have the latest DDK. I can build samples such as devcon using "build", but whenever I try a simple test using this one function in VC++ I get a linker error;
|
| Cannot use .NET in thread created by _beginthread_ex under IIS with Visual Studio 2003 but works with VS 2002. | 06 Aug 2003 07:11 GMT | 1 |
In the code below (called from an ASPX page), does someone known why a 'System.DllNotFoundException' exception is throw when the thread created by 'cppextension::MyExtension::Test()' starts to execute the function 'managedFunc' that use .NET code ? This piece of code works when I ...
|
| ISAPI that use managed extension does not work under IIS6 ? | 06 Aug 2003 07:11 GMT | 2 |
I rencently tested an web application with ISAPI extensions that internally use managed extensions but the call to the ISAPI failed. I receive the following message: "A dynamic link library (DLL) initialization routine failed." in my browser. These ISAPI extension work when they ...
|