| Thread | Last Post | Replies |
|
| Managed and Unmanaged | 31 Oct 2007 23:21 GMT | 1 |
I'm still confused with managed and unmanaged In VS2005, in the same project with /CLR switch on. in managed.h ref class ManagedClass
|
| ScrollBar colors | 31 Oct 2007 16:36 GMT | 4 |
Although the ScrollBar class has BackColor and ForeColor properties, these properties don't seem to have any effect. Is this correct? If so, is it possible to change the color of a ScrollBar? [==Peter==]
|
| DllRegisterServer | 30 Oct 2007 19:34 GMT | 16 |
I am wondering when function DllRegisterServer will be invoked? I am using Visual Studio 2005 to develop an in-process native (unmanaged) C++ COM. I am wondering when it will be invoked? 1. During the build process or during the DLL initialization process?
|
| assert | 30 Oct 2007 14:51 GMT | 17 |
I saw a couple of form of assert in code on Windows, 1. ASSERT; 2. assert; 3. _ASSERT;
|
| Memory leak using omp parallel for within a thread | 30 Oct 2007 07:59 GMT | 2 |
Hello, I'm trying to use the command "#pragma omp parallel for" within a thread but each thread that is created (and stopped again) produces a memory leak of about 44kB.
|
| How are we supposed to remote debug our mixed application? | 29 Oct 2007 23:46 GMT | 4 |
We have a mixed application that includes managed and unmanaged code. Until recently we've been able to remote debug by disabling the security policy to get the MFC managed dlls to load properly over the network. However, we are now using classes in the system.data.dll ...
|
| ATL project with Win32 DLL exported functions | 29 Oct 2007 19:24 GMT | 4 |
Is it possible to have an ATL project that also contains win32 exported classes and functions?. I have a project (module) that needs to export/expose a few ATL objects, however, other modules depend on the existing exported C++ classes. I
|
| about time and time_t | 29 Oct 2007 11:15 GMT | 1 |
In MSDN for time function, time_t time( time_t *timer );
|
| Expiry date for microsoft support on vc++? | 29 Oct 2007 02:43 GMT | 9 |
I heared that microsoft give technical support to vb upto this year end. Can any one microsoft stops techinical support for vc++(6.0)? was microsoft announced any official date?
|
| changing a project from Win32 DLL to an ATL DLL (i.e. containing a simple ATL object) | 28 Oct 2007 21:02 GMT | 1 |
I have a Win32 DLL project that needs to be refactored to support ATL. Specifically, I need to expose one COM object, that makes use of the library functionality. I tried adding a 'Simple ATL object' class directly to the project - but
|
| "This OS is not supported" | 27 Oct 2007 10:53 GMT | 2 |
For the last few days, 5 to be exact, I have received a popup window when I have turned on my computer. The message in the popup says "This OS is not supported." I got a virus via MSN about a week ago, but successfully removed it with the help of a friend (we used programs such ...
|
| Which image file formats does Image/Bitmap support? | 26 Oct 2007 21:51 GMT | 4 |
The Image class allows loading a bitmap from a graphic file. So far I've gotten it to work with JPG and BMP files. What other graphic file formats are supported in this way? Is this fixed based on the .NET Framework used (e.g., the Image class defines which
|
| Placing a Form on a particular Screen | 26 Oct 2007 19:10 GMT | 3 |
I'm programming using MS VS VC++ 2008 Express (Beta 2) in /Cli pure mode. I've found the Screen class. With it I can very easily get the count and all the data on the various Screens attached to a system, whether it be a single screen or multiple screen system.
|
| How to statically linking 2 files for 32 bit and 64 bit in VC++ 2005 | 26 Oct 2007 18:36 GMT | 2 |
I am trying to statically link a xyz.lib file to my 32-bit VC++ 2005 MFC app in order to use a .sys file. I have two xyz.lib files, one for win32 and one for amd64. I know I should add the .lib file to ['Property Pages' > 'Linker' >
|
| Why does this code work? | 26 Oct 2007 16:19 GMT | 1 |
I am new to C# and have been studying this piece of code. It loops through an Adjacency Matrix table to populate a tree view. I have two questions about why this code works. 1. initTreeView(TreeNode N) creates a new "temp" table to hold
|