CString strToolTip; ///< Stringa da mostrare.
strToolTip = _T("a");
if (m_ToolTip11_.Create(this) == FALSE)
{
AfxMessageBox(strToolTip, MB_ICONERROR);
}
else
{
//m_bTTIniz = true;
strToolTip = m_stringheBott[0];
m_ToolTip11_.AddTool(&m_Btn1, strToolTip);
m_ToolTip11_.Activate(TRUE);
}
ho fatto questa funzione,il problema è che se la toolTip risulta già creata crasha alla riga:
if (m_ToolTip11_.Create(this) == FALSE)
Come posso scrivere per ovviare a questo problema?