| Thread | Last Post | Replies |
|
| Change cursor and reset it again to default | 15 Jun 2004 04:17 GMT | 4 |
I have a snippet which makes me go mad! The clip region of the Cursor is set correctly, but I can't reset it anymore afterwards! This really drives me nuts, because I don't understand what is exactly happening at thsi point.
|
| Repost - weird behaviour with function declaration | 15 Jun 2004 00:56 GMT | 1 |
I posted this a few days back, but got no response, so I am reposting it. I have an event in my managed class which I declare as: __event void MyEvent(System::Byte (*fir) __gc[]);
|
| What this message means "LNK2022: metadata operation failed" ? | 14 Jun 2004 19:30 GMT | 2 |
MC++ application, I've got "LNK2022 error message... MyApp error LNK2022: metadata operation failed (8013118D) : Inconsistent method declarations in duplicated types(CMainFramel). (0x02000008). It seems to be some my struct type have a "#pragma pack (push, 1)". Delete that #pragma ...
|
| Help needed in interrupt handling | 14 Jun 2004 17:55 GMT | 3 |
H I want to know how to handle interrupts (enable and disable) in VC++ 6.0 ? Are there some built-in functions that could solve the purpose.. Regard Ashutosh Dikshit
|
| Unnecessary "Type expected" error at build time | 14 Jun 2004 17:08 GMT | 1 |
Using VC# in creating a .NET Compact Framework project, I received this message first thing Monday morning (talk about a bad omen for the week!). It gave a line number that didn't apply, and double-clicking on the error did nothing. Knowing how many problems there have been in
|
| time.h | 14 Jun 2004 14:23 GMT | 5 |
Why cannot I not access time.h? Here's the code: #include <time.h> long int seed = time(0); // Random Seed I get the error:
|
| GDI+ question | 14 Jun 2004 12:43 GMT | 7 |
We create VC++ programs that does some GDI drawing functionality. I discovered GDI+ and this seems to be a big step forward, and appears to be standard available in Windows XP and Windows Server 2003. But since .NET also uses it, does that mean that it gets automatically
|
| Code gen error with /CLR and boos::bind and boost::function | 14 Jun 2004 09:16 GMT | 13 |
I'm trying to use boost::bind and boost::function inside managed code, but there appears to be some code generation problems. The following code compiles fine, but the function object throws an exception when you call it with f() saying the function is empty. If you un-comment ...
|
| A Serious bug in VC.Net 2003 ? | 13 Jun 2004 03:45 GMT | 2 |
I have a simple, non-managed structure. When I create an array of this struct, only the first item in the array gets created, the others are not. Here is my sample code. This works when I build using a plain Windows application. But it does
|
| Unmanaged C++ DLL with STL causes crash | 12 Jun 2004 23:48 GMT | 1 |
We are in the process of creating a managed C++ library to wrap some existing unmanaged code. The unmanaged code makes use of the STL. We are seeing NULL pointer exceptions whenever we construct our unmanaged object. If we remove the dependency on STL in the unmanaged code the
|
| how to debug crashed VC Project | 12 Jun 2004 23:36 GMT | 1 |
I have a VC++ .NET project crashed at run time. Does anybody know how to run debug in .NET that I can get to the line where the program crashes? Thanks.
|
| Weird debug behaviour | 12 Jun 2004 14:20 GMT | 3 |
In vc7 (studio 2002), when I try to debug the first "if" statement, the IDE jumps to the next valid line and evaluates it even if the if-statement is false. What is going on? if( (theDealer.m_nPoints == 15) && (theDealer.Hand.size() == 2) ) //Break Point set here but... {
|
| ActiveX control with VC 7 | 12 Jun 2004 14:17 GMT | 3 |
I'm having a problem utilizing a control that was created in VB 6 sp6 in VC 7 (unmanged). The VC7 is a dialog based application that uses the control. The control work perfectly in a VB test form but I can not get it to work in VC7. Whenever a property is accessed a memory access ...
|
| Lost intelisence | 11 Jun 2004 22:05 GMT | 2 |
In a Managed C++ project I added a class, "CGenClass", and then included it's header in the Form .h. I can create a instance of CGenClass by doing: CGenClass* pC = new CGenClass(); but when I do:
|
| VC++ .NET 2003 and Office 2000 | 11 Jun 2004 21:50 GMT | 3 |
Helo All - I am working on a good ol Microsoft Word Control for windows forms. I have the control displayed and it sizes and moves but when I start to try and mess with the command bars It freaks out. One I can't even access command bars unless I: namespace Office = Interop::Office ...
|