001
12.06.2003, 00:06 Uhr
Uwe
C/C++ Master (Administrator)
|
Hallo,
C++: |
int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct) { ............. ............. static UINT nIndicators[]={ ID_SEPARATOR, ID_SEPARATOR, ID_SEPARATOR, ID_SEPARATOR };
if (!m_wndStatusBar.Create(this) || !m_wndStatusBar.SetIndicators(nIndicators,4)) { TRACE0("Statusleiste konnte nicht erstellt werden\n"); return -1; // Fehler bei Erstellung }else{ m_wndStatusBar.SetPaneInfo(0,ID_SEPARATOR,SBPS_NOBORDERS,64); m_wndStatusBar.SetPaneInfo(1,ID_SEPARATOR,SBPS_POPOUT,64); m_wndStatusBar.SetPaneInfo(2,ID_SEPARATOR,SBPS_NORMAL,64); m_wndStatusBar.SetPaneInfo(3,ID_SEPARATOR,SBPS_NORMAL | SBPS_STRETCH,0); } .............. ..............
|
usw. Mehr in dem MSDN -- "Es ist schwierig, ein Programm wirklich idiotensicher zu machen, weil Idioten so genial sind."
Bis dann... Uwe |