Click here to Skip to main content
15,896,154 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionHow to define an array of the object in class ( with code ) Pin
Cramp2-Nov-04 6:19
Cramp2-Nov-04 6:19 
AnswerRe: How to define an array of the object in class ( with code ) Pin
Joaquín M López Muñoz2-Nov-04 6:50
Joaquín M López Muñoz2-Nov-04 6:50 
GeneralRe: How to define an array of the object in class ( with code ) Pin
Cramp2-Nov-04 7:57
Cramp2-Nov-04 7:57 
GeneralBinary Image formation Pin
Jaso_O2-Nov-04 5:52
Jaso_O2-Nov-04 5:52 
GeneralRe: Not easy Pin
Budric B.2-Nov-04 6:50
Budric B.2-Nov-04 6:50 
GeneralRe: Not easy Pin
Jaso_O2-Nov-04 8:13
Jaso_O2-Nov-04 8:13 
GeneralSDI Project - Tool Bar Question. Pin
jerry1211a2-Nov-04 4:36
jerry1211a2-Nov-04 4:36 
GeneralRe: SDI Project - Tool Bar Question. Pin
Jack Puppy2-Nov-04 14:45
Jack Puppy2-Nov-04 14:45 
Not sure what version of VS you're using, but in 2003:

1) Go to the CMainFrame .h file, and comment out:
<br />
CToolBar    m_wndToolBar;<br />


2) Go to the CMainFrame::OnCreate in the .cpp file, and comment out:

<br />
if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP<br />
		| CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||<br />
		!m_wndToolBar.LoadToolBar(IDR_MAINFRAME))<br />
{<br />
  TRACE0("Failed to create toolbar\n");<br />
  return -1;      // fail to create<br />
}<br />


and...

<br />
m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);<br />
EnableDocking(CBRS_ALIGN_ANY);<br />
DockControlBar(&m_wndToolBar);<br />




Cool | :cool: Pssst. You see that little light on your monitor? That's actually a spy camera, and I'm tracking your every move...
Generaldatas between dialogs Pin
toxcct2-Nov-04 4:21
toxcct2-Nov-04 4:21 
GeneralRe: datas between dialogs Pin
valikac2-Nov-04 5:25
valikac2-Nov-04 5:25 
GeneralRe: datas between dialogs Pin
David Crow2-Nov-04 7:05
David Crow2-Nov-04 7:05 
GeneralRe: datas between dialogs Pin
toxcct18-Nov-04 23:30
toxcct18-Nov-04 23:30 
GeneralRe: datas between dialogs Pin
David Crow19-Nov-04 2:44
David Crow19-Nov-04 2:44 
GeneralShow methods at programming Pin
dancindoc2-Nov-04 3:13
dancindoc2-Nov-04 3:13 
GeneralRe: Show methods at programming Pin
David Crow2-Nov-04 3:32
David Crow2-Nov-04 3:32 
GeneralCBUTTON in MFC Pin
madretierra2-Nov-04 3:10
madretierra2-Nov-04 3:10 
GeneralRe: CBUTTON in MFC Pin
Cedric Moonen2-Nov-04 3:20
Cedric Moonen2-Nov-04 3:20 
GeneralRe: CBUTTON in MFC Pin
madretierra2-Nov-04 3:26
madretierra2-Nov-04 3:26 
GeneralRe: CBUTTON in MFC Pin
faroqtam2-Nov-04 11:41
faroqtam2-Nov-04 11:41 
GeneralRe: CBUTTON in MFC Pin
madretierra3-Nov-04 5:49
madretierra3-Nov-04 5:49 
GeneralRe: Use Clipboard in MFC Application Pin
David Crow2-Nov-04 2:22
David Crow2-Nov-04 2:22 
GeneralRe: Use Clipboard in MFC Application Pin
sweep1232-Nov-04 4:12
sweep1232-Nov-04 4:12 
GeneralRe: Use Clipboard in MFC Application Pin
David Crow2-Nov-04 4:51
David Crow2-Nov-04 4:51 
QuestionApp exit? Pin
Larsson2-Nov-04 1:43
Larsson2-Nov-04 1:43 
AnswerRe: App exit? Pin
Kapoor Vikrant2-Nov-04 1:59
Kapoor Vikrant2-Nov-04 1:59 

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.