本帖最後由 Simon 於 18-11-26 22:05 編輯
1.使用按鍵精靈可以 判斷顏色 ,圖示..... 然後控制鼠標位置, 自動點擊確認 教學連結
2.因為那是系統的提示畫面,您無法透過 VBA寫CODE自動按下確認按鍵...除非...是自動判斷提示視窗出現(判斷底色是否變更)
或者你可以直接抓到提示訊息的title...然後錄一段巨集去控制滑鼠,然後自動去點擊該按鍵....如此應該可行...
請參閱
https://tw.answers.yahoo.com/que ... 121013000010KK01872
只查到這個 自動點擊滑鼠右鍵的座標 可能幫助不大 請高手來解吧
Private Declare Function SetCursorPos Lib "user32" (ByVal x As Long, ByVal y As Long) As Long
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)
SetCursorPos 100, 50'指定滑鼠座標
mouse_event &H2 Or &H4, 0, 0, 0, 0 '左鍵點擊
|