constant tooltip over cwnd derived control
-
HI , i want a tooltip which has the constant behaviour instead of like normal tooltip which appear on Mouse Over and disappears on mouse out. An example this kind of tooltip is windows update tooltip , which comes without mouse over and remains constant untill u click it. so any body has some clue. No Worries!
-
HI , i want a tooltip which has the constant behaviour instead of like normal tooltip which appear on Mouse Over and disappears on mouse out. An example this kind of tooltip is windows update tooltip , which comes without mouse over and remains constant untill u click it. so any body has some clue. No Worries!
Hi, I'm sorry to disappoint by asking you a question rather than giving you a solution. The problem is : I have a dialog based application in which i have created a toolbar . now i want to display tooltips for each of the items in the toolbar. I have tried the following : CToolTipCtrl Tips; Tips.Create(this); Tips.AddTool(GetDlgItem(ID_TEST),"Click to start transferring e-mails"); Tips.Activate(TRUE); In PretranslateMessage: Tips.RelayEvent(pMsg); i have also tried: CWnd *pwnd=AfxGetApp()->m_pMainWnd->GetDlgItem(IDR_TOOLBAR); Tips.Create(this); Tips.AddTool(pwnd->GetDlgItem(ID_TEST),"Click to start transferring e-mails"); Tips.Activate(TRUE); but to no success .... can you please help me... Thanking you Regards Satadru Karjee.
-
Hi, I'm sorry to disappoint by asking you a question rather than giving you a solution. The problem is : I have a dialog based application in which i have created a toolbar . now i want to display tooltips for each of the items in the toolbar. I have tried the following : CToolTipCtrl Tips; Tips.Create(this); Tips.AddTool(GetDlgItem(ID_TEST),"Click to start transferring e-mails"); Tips.Activate(TRUE); In PretranslateMessage: Tips.RelayEvent(pMsg); i have also tried: CWnd *pwnd=AfxGetApp()->m_pMainWnd->GetDlgItem(IDR_TOOLBAR); Tips.Create(this); Tips.AddTool(pwnd->GetDlgItem(ID_TEST),"Click to start transferring e-mails"); Tips.Activate(TRUE); but to no success .... can you please help me... Thanking you Regards Satadru Karjee.
i searched google for "tootip toolbar CDialog" and it gave me this http://www.codeproject.com/docking/display\_dialog\_tooltips.asp hopefully it will help u. No Worries!