Utilisation de CToolTipCtrl [C++] - Programmation
Marsh Posté le 11-11-2001 à 11:50:16
Je n'arrive pas à utiliser des bulles d'aides jaunes (MFC) : dans OnInitDialog CToolTipCtrl* tt; tt = new CToolTipCtrl(); TOOLINFO ti; ti.cbSize = sizeof(ti); ti.hwnd = GetSafeHwnd(); ti.uId = IDC_BUTTON2; strcpy(ti.lpszText,"Mon aide" ); tt->SetToolInfo(&ti); ça compile mais ça ne marche pas !
Marsh Posté le 12-11-2001 à 20:01:53
up !
Make sure you enter the(*)required information where indicate.HTML code is not allowed
Marsh Posté le 11-11-2001 à 11:50:16
Je n'arrive pas à utiliser des bulles d'aides jaunes (MFC) :
dans OnInitDialog
CToolTipCtrl* tt;
tt = new CToolTipCtrl();
TOOLINFO ti;
ti.cbSize = sizeof(ti);
ti.hwnd = GetSafeHwnd();
ti.uId = IDC_BUTTON2;
strcpy(ti.lpszText,"Mon aide" );
tt->SetToolInfo(&ti);
ça compile mais ça ne marche pas !