Click here to Skip to main content
15,917,618 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Hide System Tray Pin
Sameer Maggon29-Apr-02 19:24
Sameer Maggon29-Apr-02 19:24 
GeneralMDI aplication Pin
Orbital^28-Apr-02 21:35
Orbital^28-Apr-02 21:35 
GeneralRe: MDI aplication Pin
Orbital^28-Apr-02 22:27
Orbital^28-Apr-02 22:27 
GeneralRe: MDI aplication Pin
Roger Allen28-Apr-02 22:30
Roger Allen28-Apr-02 22:30 
GeneralMFC Extension DLL Problems Pin
Tony Fontenot28-Apr-02 20:57
Tony Fontenot28-Apr-02 20:57 
GeneralRe: MFC Extension DLL Problems Pin
Niklas L28-Apr-02 23:35
Niklas L28-Apr-02 23:35 
GeneralRe: MFC Extension DLL Problems Pin
Tony Fontenot29-Apr-02 8:19
Tony Fontenot29-Apr-02 8:19 
GeneralRe: MFC Extension DLL Problems Pin
Niklas L1-May-02 22:50
Niklas L1-May-02 22:50 
In your header, you have something like: enum { IDD = IDD_CALENDAR_DIALOG };. This is where your problem is. Remove this line.
In your cpp-file, change
CCalendarDlg::CCalendarDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CCalendarDlg::IDD, pParent)
to
CCalendarDlg::CCalendarDlg(CWnd* pParent /*=NULL*/)
	: CDialog(IDD_CALENDAR_DIALOG, pParent)
and your problems will be gone. Just note that you wont have the class wizards support if you decide to change the ID of your dialog from the resource editor. In this case you will have to change the identifier in the cpp yourself.
GeneralCOM Problem - Pin
Sameer Maggon28-Apr-02 20:16
Sameer Maggon28-Apr-02 20:16 
GeneralRe: COM Problem - Pin
Christian Graus28-Apr-02 20:35
protectorChristian Graus28-Apr-02 20:35 
GeneralRe: COM Problem - Pin
Sameer Maggon28-Apr-02 20:40
Sameer Maggon28-Apr-02 20:40 
GeneralRe: COM Problem - Pin
Gaurika Wijeratne28-Apr-02 20:47
Gaurika Wijeratne28-Apr-02 20:47 
GeneralRe: COM Problem - Pin
Max Santos28-Apr-02 23:33
Max Santos28-Apr-02 23:33 
GeneralBoundschecker like product Pin
Sameer Maggon28-Apr-02 19:59
Sameer Maggon28-Apr-02 19:59 
GeneralRe: Boundschecker like product Pin
Neil Van Note28-Apr-02 20:30
Neil Van Note28-Apr-02 20:30 
GeneralRe: Boundschecker like product Pin
Sameer Maggon28-Apr-02 20:41
Sameer Maggon28-Apr-02 20:41 
GeneralRe: Boundschecker like product Pin
Neil Van Note28-Apr-02 20:46
Neil Van Note28-Apr-02 20:46 
GeneralRe: Boundschecker like product Pin
Sameer Maggon28-Apr-02 20:49
Sameer Maggon28-Apr-02 20:49 
GeneralRe: Boundschecker like product Pin
28-Apr-02 23:49
suss28-Apr-02 23:49 
GeneralRe: Boundschecker like product Pin
Roger Allen29-Apr-02 0:26
Roger Allen29-Apr-02 0:26 
GeneralRe: Boundschecker like product Pin
Mike Nordell29-Apr-02 13:31
Mike Nordell29-Apr-02 13:31 
GeneralNumega Boundschecker Pin
Sameer Maggon28-Apr-02 19:01
Sameer Maggon28-Apr-02 19:01 
GeneralRe: Numega Boundschecker Pin
Shog928-Apr-02 19:08
sitebuilderShog928-Apr-02 19:08 
GeneralRe: Numega Boundschecker Pin
Sameer Maggon28-Apr-02 19:18
Sameer Maggon28-Apr-02 19:18 
GeneralRe: Numega Boundschecker Pin
Nish Nishant28-Apr-02 20:00
sitebuilderNish Nishant28-Apr-02 20:00 

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.