Bonjour,
Voivi un exemple pour modifier le titre de deux onglets, en esperant que cela te sera utile.
// // Change Tab Text caption of Tab 1 et 2 // m_TabCtrl = m_dlgPropSheet.GetTabControl(); // If you use a CPropertySheet
m_TcItem.mask = TCIF_TEXT; // Mask to change text caption only m_TcItem.pszText = "Channel 1";
m_TabCtrl->SetItem( 0, &m_TcItem ); // Change first item text
m_TcItem.pszText = "Channel 2";
m_TabCtrl->SetItem( 1, &m_TcItem ); // Change second item text
Salutations