Click here to Skip to main content
15,914,010 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Unicode in VC Pin
Rickard Andersson2012-Nov-02 20:57
Rickard Andersson2012-Nov-02 20:57 
GeneralAuto hide dialog base app on startup. Pin
12-Nov-02 3:10
suss12-Nov-02 3:10 
GeneralRe: Auto hide dialog base app on startup. Pin
567890123412-Nov-02 3:55
567890123412-Nov-02 3:55 
GeneralRe: Auto hide dialog base app on startup. Pin
Nitron12-Nov-02 4:08
Nitron12-Nov-02 4:08 
GeneralRe: Auto hide dialog base app on startup. Pin
Mazdak12-Nov-02 5:28
Mazdak12-Nov-02 5:28 
GeneralRe: Auto hide dialog base app on startup. Pin
Nitron12-Nov-02 8:11
Nitron12-Nov-02 8:11 
GeneralRe: Auto hide dialog base app on startup. Pin
Mazdak12-Nov-02 9:02
Mazdak12-Nov-02 9:02 
GeneralA simpler way Pin
Alvaro Mendez12-Nov-02 6:01
Alvaro Mendez12-Nov-02 6:01 
Here's a simpler way:

1. Uncheck the "Visible" checkbox from the dialog resource.
2. Construct the dialog box modelessly:

In your CWinApp-derived class, replace the code in your InitInstance (after Enable3dControlStatic) with something like this:

static CYourDlg dlg;
 
dlg.Create(CYourDlg::IDD);
m_pMainWnd = &dlg;
 
return TRUE;


Regards,
Alvaro



Well done is better than well said. -- Benjamin Franklin
GeneralModify message map at run-time Pin
Hostalet Wandosell12-Nov-02 3:08
Hostalet Wandosell12-Nov-02 3:08 
GeneralRe: Modify message map at run-time Pin
Alvaro Mendez12-Nov-02 6:07
Alvaro Mendez12-Nov-02 6:07 
GeneralRe: Modify message map at run-time Pin
Hostalet Wandosell13-Nov-02 4:10
Hostalet Wandosell13-Nov-02 4:10 
GeneralRe: Modify message map at run-time Pin
ian mariano12-Nov-02 6:16
ian mariano12-Nov-02 6:16 
GeneralHelp with ClassWizard please! Pin
georgiek5012-Nov-02 2:47
georgiek5012-Nov-02 2:47 
GeneralRe: Help with ClassWizard please! Pin
567890123412-Nov-02 4:04
567890123412-Nov-02 4:04 
GeneralRe: Help with ClassWizard please! Pin
georgiek5012-Nov-02 5:56
georgiek5012-Nov-02 5:56 
GeneralFlicker and Cwnd Pin
Pyt12-Nov-02 1:58
Pyt12-Nov-02 1:58 
GeneralRe: Flicker and Cwnd Pin
Prem Kumar12-Nov-02 2:16
Prem Kumar12-Nov-02 2:16 
GeneralRe: Flicker and Cwnd Pin
KarstenK12-Nov-02 3:01
mveKarstenK12-Nov-02 3:01 
GeneralRe: Flicker and Cwnd Pin
Pyt12-Nov-02 3:16
Pyt12-Nov-02 3:16 
GeneralRe: Flicker and Cwnd Pin
KarstenK12-Nov-02 3:22
mveKarstenK12-Nov-02 3:22 
GeneralRe: Flicker and Cwnd Pin
Pyt12-Nov-02 3:31
Pyt12-Nov-02 3:31 
GeneralRe: Flicker and Cwnd Pin
Gary Kirkham12-Nov-02 10:51
Gary Kirkham12-Nov-02 10:51 
GeneralRe: Flicker and Cwnd Pin
Patje12-Nov-02 21:42
Patje12-Nov-02 21:42 
Generalvsprintf Pin
Hans Ruck12-Nov-02 1:53
Hans Ruck12-Nov-02 1:53 
GeneralRe: vsprintf Pin
Chris Losinger12-Nov-02 5:10
professionalChris Losinger12-Nov-02 5:10 

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.