| Thread | Last Post | Replies |
|
| referencing an ATL project | 17 Nov 2004 23:00 GMT | 1 |
I'm trying to create a simple managed C++ application that will be a test UI around a couple of ATL COM DLL projects that I have created (all with VS2003). What I am attempting to do is bring all three projects into the same solution and use them together. Now, to the ...
|
| exporting unmanaged classes from a managed dll | 17 Nov 2004 21:16 GMT | 3 |
is it possible to export (and, above all, import afterwards) an unmanaged class from a managed dll (compiled with the /clr switch. it would in fact probably result in a mixed mode dll)? it seems that member methods of any exported unmanaged class are compiled as static and global ...
|
| C2785 and C2912 error in 2003.net VC++ | 17 Nov 2004 18:27 GMT | 1 |
I'm trying to compile the following code with VC++ 2003.net. ( The real code is a bit different, but I made a small example that does not make sense, but it shows the problem ) The code compiles ok with the gnu 3.2.3 compiler and seems to be standard
|
| SqlConnection and threads | 17 Nov 2004 14:25 GMT | 1 |
I have an SqlConnection object defined as a member of main form. I also have a thread that creates an SqlDataReader but uses the same SqlConnection object. The SqlDataReader simple loops round for each row in the result set. The problem I have is that after running the thread many ...
|
| How to set the environmental variables | 17 Nov 2004 09:09 GMT | 1 |
(Type your message here) -------------------------------- From: Milos Puchta We have problem with the building Qt examples
|
| PostQuitMessage different to PostMessage(hWnd, WM_QUIT, ...? | 17 Nov 2004 04:02 GMT | 17 |
Is PostQuitMessage(?) different to PostMessage(hWnd, WM_QUIT, ... ) ? I've got a window in a DLL (the same one experiencing the issue below, "return value of WM_QUIT") in which PostMessage(hWnd, WM_QUIT, ... ) works, but PostQuitMessage doesn't.
|
| Editor problem | 16 Nov 2004 20:12 GMT | 1 |
I have clicked remove on a header file in the Solution Explorer. Now I need to add it back in. I can add the .CPP, .H and/or .RESX files individually, but they don't appear in the same way as the existing forms (they have .resX file as a child of the .h file). Also, now when I ...
|
| VC7.1 : devenv.exe looking for unexpected files when compiling | 16 Nov 2004 20:08 GMT | 1 |
I am using VC7.1 to build a big solution (70 projects, lets say project A, B, C, ...). I am using filemon to look at what VC7.1 does while compiling project A.
|
| Two questions about Visual Stidio .NET ... | 16 Nov 2004 18:39 GMT | 4 |
1) How can I perform backward search in editor of Visual Studio .NET? In VC++ 6.0 it was enough just to hold Shift button. This combination doesn't work anymore in Visual Studio .NET? 2) Each time I build C++ project in Visual Studio .NET, the annoying window
|
| summary tab info xp sp2 | 16 Nov 2004 14:58 GMT | 1 |
I have added service pack 2, and now I can no longer programmatically edit the summary tab information on the properties of a file. Can anyone suggest a fix / have a solution?? thanks
|
| new operator throws NullReferenceException | 16 Nov 2004 14:51 GMT | 1 |
I have a weird exception happening when calling the new operator. I'm not sure if this is the intended reaction to the situation or is actually a problem I've got. In any case a different error message would be helpful. I would like to know your thoughts on this problem.
|
| lock | 16 Nov 2004 04:48 GMT | 2 |
Are there anything like the "lock" statement of C# in C++? Thank you for answering.
|
| Changing default namespace in assembly | 15 Nov 2004 20:57 GMT | 3 |
In the explanation to the ToolboxBitmapAttribute it is mentioned that new bitmaps added to an assembly by Visual Studio .NET get the name of the default namespace prepened to the name of the bitmap, and that the default namespace is the assembly name. It then mentions that one can ...
|
| Overriding a method containing a ref parameter in C++ | 15 Nov 2004 14:09 GMT | 2 |
I have a method in a C# assembly like this: public virtual void RefMeth(ref bool hi) {} And I want to override it with a VS.Net 2003 Managed C++ method like this: void RefMeth(bool __gc& hi)
|
| Disabling/Enabling /WX via pragma | 15 Nov 2004 09:14 GMT | 2 |
I like to know if is it possible to disable/reenable /WX (treat warning as error) via #pragma on my code. TIA. Marco.
|