Click here to Skip to main content
15,894,540 members

Comments by Vaibhav_J_Jaiswal (Top 40 by date)

Vaibhav_J_Jaiswal 4-Jun-14 7:57am View    
Can you please suggest me, how shall I achieve this? Means how I merge tooltip and icon. In current scenario I am creating icon using NOTIFYICONDATA structure and whenever the mouse pointer is come on the icon the tooltip is updated.
Vaibhav_J_Jaiswal 21-Mar-14 6:20am View    
Thanks for your help. I got the solution of my problem
Vaibhav_J_Jaiswal 24-Feb-14 3:26am View    
Yes I am using MFC for this. Whenever I am going to debug, before debugging OS send this message box.
Vaibhav_J_Jaiswal 21-Aug-13 6:15am View    
menu.AppendMenu(MF_SEPARATOR, NULL);
menu.AppendMenu(MF_STRING, IDC_RENAME_ITEM, _T("Rename Item"));//Delaplex
try
{
if ( GetUsersItemPermissions(m_nhUser, data.nh).CanDelete()
&& GetUserSystemPermission(m_nhUser, CSystemPerm::SYSTEM) )
{
menu.AppendMenu(MF_SEPARATOR, NULL);
menu.AppendMenu(MF_STRING, IDC_DELETE_ITEM, GetResourceString(IDS_MENU_DELETE_ITEM));
}
}
catch (_com_error&)
{
}
Vaibhav_J_Jaiswal 21-Aug-13 5:29am View    
I do this already. Now I want to rename the selected tree item. What I have to do in this menu event for rename the selected tree item.