Private Sub cmdMyCursor_Click() '更改指针样式 Dim strCurFile As String strCurFile = CurrentProject.Path + "\Cursor.cur" '可随意调用其他的.cur鼠标样式文件,以达到显示各种指针的目的 lngMyCursor = LoadCursorFromFile(strCurFile) lngSystemCursor = GetCursor() lngSystemCursor = CopyCursor(lngSystemCursor) SetSystemCursor lngMyCursor, OCR_NORMAL Text1.SetFocus Text1.Text = "鼠标指针已经设定为您要的状态" cmdMyCursor.Enabled = False cmdSystemCursor.Enabled = True End Sub
private Sub cmdSystemCursor_Click() '恢复系统指针样式 SetSystemCursor lngSystemCursor, OCR_NORMAL Text1.SetFocus Text1.Text = "鼠标指针已经恢复为系统状态" cmdMyCursor.Enabled = True cmdSystemCursor.Enabled = False lngSystemCursor = 0 End Sub
private Sub Form_Close() If lngSystemCursor <> 0 Then SetSystemCursor lngSystemCursor, OCR_NORMAL End Sub
private Sub Form_Unload(Cancel As Integer) If lngSystemCursor <> 0 Then SetSystemCursor lngSystemCursor, OCR_NORMAL End Sub |