Click here to Skip to main content
15,908,172 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: I need some help with some errors... Pin
Matt Gullett31-Jul-01 13:33
Matt Gullett31-Jul-01 13:33 
QuestionWhen is m_wndToolBar initially sized inplace? Pin
Kristian Nilssen30-Jul-01 7:50
Kristian Nilssen30-Jul-01 7:50 
GeneralRemove icon from taskbar Pin
Sreejumon30-Jul-01 7:15
Sreejumon30-Jul-01 7:15 
GeneralRe: Remove icon from taskbar Pin
Tomasz Sowinski30-Jul-01 7:26
Tomasz Sowinski30-Jul-01 7:26 
GeneralRe: Remove icon from taskbar Pin
Sreejumon30-Jul-01 7:33
Sreejumon30-Jul-01 7:33 
GeneralRe: Remove icon from taskbar Pin
Tomasz Sowinski30-Jul-01 7:38
Tomasz Sowinski30-Jul-01 7:38 
GeneralRe: Remove icon from taskbar Pin
Sreejumon30-Jul-01 8:05
Sreejumon30-Jul-01 8:05 
GeneralRe: Remove icon from taskbar Pin
Tomasz Sowinski30-Jul-01 8:36
Tomasz Sowinski30-Jul-01 8:36 
In CYourApp::InitInstance change this...
CYourDlg dlg;
m_pMainWnd = &dlg;

... to this:
CWnd wndOwner;
static const char * szClass = AfxRegisterWndClass(0);
VERIFY(wndOwner.CreateEx(0, szClass, "x", WS_POPUP, 0, 0, 0, 0, NULL, NULL));
CYourDlg dlg(&wndOwner);
m_pMainWnd = &dlg;

Remove WS_EX_APPWINDOW in CYourDlg::OnInitDialog:
ModifyStyleEx(WS_EX_APPWINDOW, 0);


Tomasz Sowinski -- http://www.shooltz.com
GeneralCRichEdit & Mouse Move Pin
AJ12330-Jul-01 6:35
AJ12330-Jul-01 6:35 
GeneralRe: CRichEdit & Mouse Move Pin
Kevin Cook30-Jul-01 7:42
Kevin Cook30-Jul-01 7:42 
GeneralVC Project File Format Pin
Steve Thresher30-Jul-01 5:41
Steve Thresher30-Jul-01 5:41 
GeneralRe: VC Project File Format Pin
Carlos Antollini30-Jul-01 5:59
Carlos Antollini30-Jul-01 5:59 
GeneralRe: VC Project File Format Pin
Steve Thresher30-Jul-01 6:41
Steve Thresher30-Jul-01 6:41 
GeneralRe: VC Project File Format Pin
J Patel30-Jul-01 7:04
J Patel30-Jul-01 7:04 
GeneralRe: VC Project File Format Pin
J Patel30-Jul-01 10:52
J Patel30-Jul-01 10:52 
GeneralRe: VC Project File Format Pin
Tomasz Sowinski30-Jul-01 7:17
Tomasz Sowinski30-Jul-01 7:17 
GeneralRe: VC Project File Format Pin
Steve Thresher30-Jul-01 22:44
Steve Thresher30-Jul-01 22:44 
GeneralCRichEditCtrl & EM_CHARFROMPOS Pin
AJ12330-Jul-01 5:14
AJ12330-Jul-01 5:14 
GeneralDialog Printing .... Again!!! Pin
Michael Martin30-Jul-01 4:16
professionalMichael Martin30-Jul-01 4:16 
GeneralRe: Dialog Printing .... Again!!! Pin
Tomasz Sowinski30-Jul-01 5:25
Tomasz Sowinski30-Jul-01 5:25 
Generalswitch and case Pin
Gérald Mercet30-Jul-01 4:15
Gérald Mercet30-Jul-01 4:15 
GeneralRe: switch and case Pin
Carlos Antollini30-Jul-01 4:38
Carlos Antollini30-Jul-01 4:38 
GeneralScroll bars Pin
Nick Armstrong30-Jul-01 4:10
Nick Armstrong30-Jul-01 4:10 
GeneralRe: Scroll bars Pin
Oliver Anhuth31-Jul-01 0:33
Oliver Anhuth31-Jul-01 0:33 
GeneralNaming sub-menus dynamically Pin
mr200330-Jul-01 3:12
mr200330-Jul-01 3:12 

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.