如题?
ts

解决方案 »

  1.   

    处理 LBN_SELCHANGE 消息就可以了
      

  2.   

    用ClassWizerd 生成响应NM_CLICK的函数,在此弹出提示框
      

  3.   

    搞个通用一点的你可以在任何一格响应不同的提示框void CExGrid::OnLButtonDown(UINT nFlags, CPoint point) 
    {
    SetFocus();
    LVHITTESTINFO testinfo;
    testinfo.pt = point; int row, col;
    SubItemHitTest(&testinfo);
    row = testinfo.iItem;
    col = testinfo.iSubItem;
    if(row == yourRow/*你指定的行*/ && col == yourCol/*你指定的列*/ )
    {
     AfxMessageBox("你的提示信息");
    }
    }
      

  4.   

    各位会错意了吧!我是说怎么弄那个提示框(tip),不是MessageBox