| Thread | Last Post | Replies |
|
| VC++2003.NET to Visual Studio EXPRESS | 26 Sep 2007 19:02 GMT | 2 |
I have a project written in VC++ 2003.NET which uses MFC classes. I have ONLY VC++Express2005. I can open the VCProject file sucessfully. The conversion takes place without any error. BUT the project is not Building using VC++Express2005. The error is as follows:
|
| extern "C" is ignored | 26 Sep 2007 17:30 GMT | 2 |
My DLL (VC 2005, unmanaged) contains an exported function AutoOpen, whose name should be undecorated. I've used this declaration: extern "C" __declspec(dllexport) int WINAPI AutoOpen(void) In spite of extern "C", the name of this function is still decorated in the DLL
|
| Exposing bool to non-MS, non-C++ callers | 25 Sep 2007 19:45 GMT | 11 |
Suppose I export a function or a structure from a standard DLL that uses the C++ "bool" data type. The documentation states that, as of C++ 5.0 and later, Visual C++ implements bool as a 1 byte data type. If someone puts a value other than 1 or 0 into the byte and calls into my ...
|
| Looking for a good reference book | 25 Sep 2007 18:29 GMT | 2 |
A friend of mine is an experienced MFC programmer. He as recently gotten ".Net Religion", but he can't find a good reference book that presents basic Windows Forms programming techniques that he can relate to his MFC skills. He is currently programming in both C++/CLI and VB.Net ...
|
| How to find closing brace? | 25 Sep 2007 02:17 GMT | 2 |
In the VS 2005 IDE, is there an easy way to navigate to the closing brace for a given openeing brace in the source code? TIA - Bob
|
| restoring a minimized window | 25 Sep 2007 01:50 GMT | 3 |
i need to restore an external app's minimized window whose handle i know, from within a different running app. how would i do that? thanks for any help
|
| Problems #include'ing a file | 25 Sep 2007 01:48 GMT | 3 |
I am working on developing a program using Visual Studio 2003 but am having problems getting my program to find my GL.h and GLU.h, and I am guessing it will have the same problems trying to link to the .lib and .dll files. What do I all need to do to get this to properly compile ...
|
| Release version crashes on the Multi-CPU system | 25 Sep 2007 01:44 GMT | 2 |
I have a C++/C++.net application. Release version crashes on the Multi-CPU box but Debug version works well. And release version works well on single-cpu box. Any idea?
|
| How to get DialogBox BkColor? Thanks!(Win32 SDK) | 25 Sep 2007 01:34 GMT | 1 |
I got a example, it GetBkColor from a HDC(the dc get from a DialogBox), but it BkColor always color white, dialogbox default BkColor is color like gray, how can I do to get the correct color for dialogbox? Thanks!
|
| C++/CLI protected delegate | 24 Sep 2007 23:23 GMT | 1 |
The following code public ref class X { protected:
|
| C++/CLI static class and literal | 24 Sep 2007 23:22 GMT | 1 |
Why does the following code public ref struct X abstract sealed { literal int Y = 1; };
|
| library and pure | 24 Sep 2007 23:19 GMT | 3 |
I am building a control library in C++/CLI. My project links with a native library and am getting an error that the library cannot work with pure: dxerr.lib(dxerr.obj) : fatal error LNK1313: ijw/native module
|
| Problems returning an int Array pointer | 24 Sep 2007 23:17 GMT | 5 |
Below are the definitions of two classes. VList creates two static integer arrays (v_0, v_1), creates an array of pointers to these arrays (vlist), and has a public method to return a pointer to the corresponding integer array based on its index into vlist (Element( index )) .
|
| Resgen.exe error (error PRJ0002 : Error result -532459699 returned from 'C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\bin\resgen.exe') | 24 Sep 2007 03:45 GMT | 1 |
I have an error when compiling a simple form project... I just start a new Form project and add a new PictureBox in a form(or anything that generate the .resx file) After that when compiling I always get the following error (in VS
|
| C2440 on COM_INTERFACE_ENTRY | 23 Sep 2007 01:23 GMT | 3 |
For the following BEGIN_COM_MAP(I_Command) COM_INTERFACE_ENTRY(ICommand) COM_INTERFACE_ENTRY(IDispatch)
|