제가 오토마우스를 만들었는데
너만
제가 오른쪽 왼쪽 오토 마우스를 만들었는데 왼쪽은 되는데 오른쪽이 안되네요;잘못된 부분이나 넣이 않은부분점 수정해주세요Private Declare Function GetAsyncKeyState Lib user32 (ByVal vKey As Long) As Integer
Private Declare Sub mouse_event Lib user32 (ByVal dwFlags As Long, ByVal dx As Long, ByVal dy As Long, ByVal cButtons As Long, ByVal dwExtraInfo As Long)
Private Const mouseeventf_leftdown = &H2
Private Const mouseeventf_leftup = &H4Private Sub HScroll1_Change()
Label1.Caption = HScroll1.Value
End Sub
Private Sub HScroll2_Change()
Label4.Caption = HScroll2.Value
End SubPrivate Sub mnuExit_Click()
Unload Me
End Sub
Private Sub RichTextBox1_Change()End SubPrivate Sub Timer1_Timer()
If GetAsyncKeyState(189) Then
If Timer2.Enabled Then
Timer2.Enabled = False
MsgBox 마우스가 현재 실행중 입니다., vbInformation, 알림
MsgBox 다시 실행해 주십시오, vbInformation, 알림
Else
Timer2.Interval = HScroll1.Value
Timer2.Enabled = True
End If
ElseIf GetAsyncKeyState(187) Then
If Timer2.Enabled Then
Timer2.Enabled = False
Else
MsgBox 현재 실행중이 아닙니다., vbInformation, 알림
End If
End If
End SubPrivate Sub Timer2_Timer()
mouse_event mouseeventf_leftdown, 0, 0, 0, 0
mouse_event mouseeventf_leftup, 0, 0, 0, 0
End SubPrivate Sub 설정_Click()End SubPrivate Sub Timer3_Timer()
If GetAsyncKeyState(45) Then
If Timer4.Enabled Then
Timer4.Enabled = False
MsgBox 마우스가 현재 실행중 입니다., vbInformation, 알림
MsgBox 다시 실행해 주십시오, vbInformation, 알림
Else
Timer4.Interval = HScroll1.Value
Timer4.Enabled = True
End If
ElseIf GetAsyncKeyState(6) Then
If Timer4.Enabled Then
Timer4.Enabled = False
Else
MsgBox 현재 실행중이 아닙니다., vbInformation, 알림
End If
End If
End SubPrivate Sub Timer4_Timer()
mouse_event mouseeventf_rightdown, 0, 0, 0, 0
mouse_event mouseeventf_rightup, 0, 0, 0, 0
End Sub
-
혜린 2025-03-24
저도 찾고있던거네요 그나저나 글번호가 232323
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2690315 | 덧글달기 질문 | 엄마몬 | 2025-04-03 |
2690293 | if문 으로하는건가? 다운로드가 완료되면 다음을 실행하라 라는 구문좀..ㅠㅠ | 달콤이 | 2025-04-03 |
2690270 | 텍스트 랜덤 출력 (3) | 푸른나무 | 2025-04-03 |
2690238 | 파싱에대해 자세히 알고싶습니다. (1) | 슬기 | 2025-04-03 |
2690184 | Winsock 질문 ! | 꽃봄 | 2025-04-02 |
2690155 | kernel32.dll 오류질문 (8) | 백합 | 2025-04-02 |
2690013 | 급해요 커맨드박스를누르면 다운로드하게해놧는데 잘되던게 403Forbidden떠요 일단글좀봐주세요 (2) | 에일린 | 2025-04-01 |
2689986 | 자동 다운 자동 실행 ..;;;; 도대체 뭐가 안되는거저??;; (3) | 조은 | 2025-03-31 |
2689935 | 레지삭제질문! | 물티슈 | 2025-03-31 |
2689914 | 비베체크박스핫키 | 남천 | 2025-03-31 |
2689802 | ImageSearchDll.dll (2) | 탄성 | 2025-03-30 |
2689741 | 타이머를이용한..트레이 | 헤벌심 | 2025-03-29 |
2689686 | [프르그래스바질문] -초보임 (10) | 콩알눈 | 2025-03-29 |
2689632 | 체크다운로드 (체크되어잇는것만) (3) | 얀별 | 2025-03-28 |
2689529 | 프메에관한건데..질문합니다! (1) | 파라나 | 2025-03-27 |
2689499 | PropBag.ReadProperty 질문 | 해사랑해 | 2025-03-27 |
2689474 | 비베6.0 Shell문 런타임오류 질문드립니다 (10) | 울트라 | 2025-03-27 |
2689388 | navigate로 안들어가지는 사이트있네요 (1) | 은별 | 2025-03-26 |
2689360 | 로그인 주소는 어떻게 얻나요? (1) | MinA | 2025-03-26 |
2689195 | CommonDialog 로 텍스트열고 텍스트내용을 레이블로 옮기려면 ..? | 리카 | 2025-03-24 |