vb6
当鼠标移动到lable1上时,变换鼠标为一只小手(超级链接)
在mousemove事件加
  Me.Label1(Index).MousePointer = ?
这里的?应该等于多少呢?

解决方案 »

  1.   

    是这个吧typedef enum InkMousePointer {
        IMP_Default = 0,
        IMP_Arrow = 1,
        IMP_Crosshair = 2,
        IMP_Ibeam = 3,
        IMP_SizeNESW = 4,
        IMP_SizeNS = 5,
        IMP_SizeNWSE = 6,
        IMP_SizeWE = 7,
        IMP_UpArrow = 8,
        IMP_Hourglass = 9,
        IMP_NoDrop = 10,
        IMP_ArrowHourglass = 11,
        IMP_ArrowQuestion = 12,
        IMP_SizeAll = 13,
        IMP_Hand = 14,    IMP_Custom = 99
    } InkMousePointer;