| Thread | Last Post | Replies |
|
| Strange linked list behaviour | 27 Mar 2004 19:02 GMT | 6 |
h I use the following statements in my code typedef struct _MYSTRUCT [...
|
| [newbie] list with structures | 27 Mar 2004 18:48 GMT | 2 |
I try to use the C++ std class "list" to create my linked list in my MFC app. Now, this list shall contain instances of a structure, like typedef struct _MYSTRUCT int a int b
|
| Bug in VS 2003.Net - Template parameter deduction | 27 Mar 2004 16:25 GMT | 4 |
The following gives you two bugs. Just create a default console project, and paste it at the bottom of the file with _tmain. e:\Src\C\BlobHolderTest\BlobHolderTest.cpp(44) : fatal error C1001: INTERNAL COMPILER ERROR (compiler file 'msc1.cpp', line 2701)
|
| Bug with 'dynamic_cast<>' in VC7.1 | 27 Mar 2004 16:24 GMT | 12 |
#include <iostream> class B { public: virtual ~B() {}
|
| initializing Color arrays... | 27 Mar 2004 07:31 GMT | 1 |
I was wondering if someone could tell me the exact syntax for initializing a Color array. I thought it would be something like below, but I check them and its says they're empty Color colors[] = {Color::Black,Color::Blue,Color::Black} It makes the array and puts it at a length of 3 ...
|
| The quest for the main window... | 27 Mar 2004 04:11 GMT | 1 |
I need to send Maximize/Minimize/Restore messages to applications spawned trought "CreateProcess" calls from within my program (kind of what the taskbar-buttons do) so, how do I send Maximize/Minimize/Restore messages to these "user spawned" apps It is possible to post messages ...
|
| How do I: Marshal - Native String Data to Managed Code | 27 Mar 2004 04:07 GMT | 2 |
I am using VS2003 MC++ & IJW (Mixed DLL) The Question: How do I most effciently I transfer large numbers of string data created in native code to managed code?
|
| How to raiseevent across .NET assembly boundary using VB.NET | 26 Mar 2004 23:50 GMT | 1 |
I am using VB.NET. I have two assemblies, I am trying to raise an event in one of them and have it received in the other. Below is some pseudo code to illustrate what I am doing: Assembly 1:
|
| casting __value struct to __gc interface | 26 Mar 2004 19:33 GMT | 8 |
How can i cast a __value structo to a __gc interface? The code below throws a compiler error: Person oPerson = Person::Person(); IPerson* iPerson = __try_cast<IPerson*>(oPerson);
|
| ImageCodecInfo and GetEncoders | 26 Mar 2004 19:22 GMT | 3 |
I'm trying to call GetEncoders in C++. I've got code that does it successfully in C# but whatever I do I seem to get errors. The lines below, which is my current hacked off state, cause the problem: System::Drawing::Imaging::ImageCodecInfo __gc *encoders __gc[];
|
| Using a VB.NET interface from an unmanaged C++ application | 26 Mar 2004 15:25 GMT | 2 |
Here's the situation... We have a product which was developped in C++ (win32) and had a Borland C++Builder interface (totally COM-free and proud of it). A little over 2 years ago (before the first official release of .NET) we
|
| gc* to LPVOOD * casting problem | 26 Mar 2004 15:01 GMT | 1 |
how can I cast from gc* to LPVOID * anyone help me, thanks!
|
| applications of vc++ | 26 Mar 2004 14:09 GMT | 1 |
i would like to know what is the feature and advantages of vc++
|
| NULL in VB 7 | 26 Mar 2004 08:43 GMT | 3 |
what is the keyword for a null pointer in vb say i wanna clear a pointer to a datagrid cell dim aa as datagrid.cell ...
|
| Object | 26 Mar 2004 03:11 GMT | 3 |
Consider the sample .NET 2003 Windows Form application In winmain we got Application::Run(new Form1()) instruction which creates the instance (object) of Form1 class. But how can I use the methods of this object by its name
|