Click here to Skip to main content
16,005,281 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralVirtual Memory Check Pin
keb22-Aug-03 3:45
keb22-Aug-03 3:45 
GeneralRe: Virtual Memory Check Pin
Alexander Ruscle22-Aug-03 5:24
Alexander Ruscle22-Aug-03 5:24 
GeneralRe: Virtual Memory Check Pin
keb22-Aug-03 5:54
keb22-Aug-03 5:54 
GeneralRe: Virtual Memory Check Pin
Alexander Ruscle22-Aug-03 9:58
Alexander Ruscle22-Aug-03 9:58 
QuestionHow to design custom GUI using GDI+ and monitor mouse clicks Pin
Fabio Miguez22-Aug-03 3:24
Fabio Miguez22-Aug-03 3:24 
AnswerRe: How to design custom GUI using GDI+ and monitor mouse clicks Pin
Dangleberry22-Aug-03 3:56
sussDangleberry22-Aug-03 3:56 
GeneralRe: How to design custom GUI using GDI+ and monitor mouse clicks Pin
Fabio Miguez22-Aug-03 5:54
Fabio Miguez22-Aug-03 5:54 
GeneralVisual Studio 2003 bug and work around Pin
bobsheep22-Aug-03 3:23
bobsheep22-Aug-03 3:23 
There is a bug in Visual Studio 2003 which prevents you adding ATL OLEDB consumers to MFC projects. This previously worked in Visual Studio 2002.

The work around is to fool the ATL wizard into thinking it's not an MFC project
Change your CWinApp inherited class as follows

#ifdef _FAKED
class CG1App : public CObject
#else
class CG1App : public CWinApp
#endif

The wizard now works and the project compiles correctly.

NB. you will still need to add the required header
atldbcli.h


Generalstring to int Pin
si_6922-Aug-03 3:12
si_6922-Aug-03 3:12 
GeneralRe: string to int Pin
David Crow22-Aug-03 3:20
David Crow22-Aug-03 3:20 
GeneralRe: string to int Pin
zeki yugnak22-Aug-03 3:39
zeki yugnak22-Aug-03 3:39 
GeneralRe: string to int Pin
Michael Dunn22-Aug-03 5:43
sitebuilderMichael Dunn22-Aug-03 5:43 
Questionhow to display the item selected in a tree list Pin
coda_x22-Aug-03 2:54
coda_x22-Aug-03 2:54 
AnswerRe: how to display the item selected in a tree list Pin
Member 42425922-Aug-03 3:03
Member 42425922-Aug-03 3:03 
GeneralSDI query Pin
coda_x22-Aug-03 2:37
coda_x22-Aug-03 2:37 
Generallaunch another console program Pin
Anonymous22-Aug-03 2:33
Anonymous22-Aug-03 2:33 
GeneralRe: launch another console program Pin
David Crow22-Aug-03 3:00
David Crow22-Aug-03 3:00 
GeneralRe: launch another console program Pin
Lanny Thompson22-Aug-03 3:02
Lanny Thompson22-Aug-03 3:02 
GeneralRe: launch another console program Pin
Brad Sokol22-Aug-03 3:03
Brad Sokol22-Aug-03 3:03 
GeneralRe: launch another console program Pin
Anonymous22-Aug-03 4:38
Anonymous22-Aug-03 4:38 
GeneralModeless Dialog Problem Pin
IceBerG7122-Aug-03 1:54
IceBerG7122-Aug-03 1:54 
GeneralRe: Modeless Dialog Problem Pin
Cedric Moonen22-Aug-03 1:57
Cedric Moonen22-Aug-03 1:57 
GeneralRe: Modeless Dialog Problem Pin
IceBerG7122-Aug-03 2:00
IceBerG7122-Aug-03 2:00 
GeneralRe: Modeless Dialog Problem Pin
Member 42425922-Aug-03 2:57
Member 42425922-Aug-03 2:57 
QuestionCProgressCtrl....WTF ? Pin
Brian van der Beek22-Aug-03 1:54
Brian van der Beek22-Aug-03 1:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.