027
05.11.2003, 10:51 Uhr
MasterThomsen
|
Hab das Problem in den Griff bekommen. Musste das Tab anders einbinden.
vorher: // Setup the tab control int nPageID = 0; m_tab_SSL.AddSSLPage (_T("Control"), nPageID++, IDD_Control); m_tab_SSL.AddSSLPage (_T("Clock"), nPageID++, IDD_Clock; m_tab_SSL.AddSSLPage (_T("Addressing"), nPageID++, IDD_Addressing); m_tab_SSL.AddSSLPage (_T("Interrupt"), nPageID++, IDD_Interrupt);
nachher: // Setup the tab control int nPageID = 0; m_controlTab.Create (IDD_Control, this); m_tab_SSL.AddSSLPage (_T("Control"), nPageID++, &m_controlTab); m_clockTab.Create (IDD_Clock, this); m_tab_SSL.AddSSLPage (_T("Clock"), nPageID++, &m_clockTab); m_addressingTab.Create (IDD_Addressing, this); m_tab_SSL.AddSSLPage (_T("Addressing"), nPageID++, &m_addressingTab); m_interruptTab.Create (IDD_Interrupt, this); m_tab_SSL.AddSSLPage (_T("Interrupt"), nPageID++, &m_interruptTab);
Danke an alle die versucht haben mir zu helfen |