黑社会壁纸:谁能做帮我一个程序啊

来源:百度文库 编辑:高校问答 时间:2024/04/29 20:45:24
做一个能够自动连续按“F1”的~~`
因为我的电脑不知道为什么不能用按键精灵等等软件
谢谢 ~~~``
要有间断的按 0.5秒一下

我以前为了刷自己blog上的计数器时做的一个网页刷新的软件,是连续按F5来刷新的。

我把代码给你,你自己改改吧~!~!希望对你有用吧~!

Private Declare Function GetWindow Lib "user32" (ByVal hwnd As Long, ByVal wCmd As Long) As Long
Private Declare Function GetWindowText Lib "user32" Alias "GetWindowTextA" (ByVal hwnd As Long, ByVal lpString As String, ByVal cch As Long) As Long
Private Declare Function GetWindowTextLength Lib "user32" Alias "GetWindowTextLengthA" (ByVal hwnd As Long) As Long

Private Const GW_HWNDLAST = 1
Private Const GW_HWNDNEXT = 2

Function GetWin(webadd As String) As String
On Error Resume Next

Dim NhWnd As Long
Dim Length, WinTitle$
Dim OkWin As String

NhWnd = GetWindow(hwnd, GW_HWNDFIRST)

While NhWnd <> 0
Length = GetWindowTextLength(NhWnd)
WinTitle$ = Space$(Length + 1)

Length = GetWindowText(NhWnd, WinTitle$, Length + 1)

If InStr(LCase(WinTitle$), webadd) > 0 Then
OkWin = OkWin & "\\" & NhWnd
End If

NhWnd = GetWindow(NhWnd, GW_HWNDNEXT)
Wend

GetWin = OkWin
End Function

Sub SendInfo(webaddr As String)
On Error Resume Next

Dim OkWin, hCount
OkWin = GetWin(webaddr)
'MsgBox OkWin
If Len(OkWin) > 0 Then
OkWin = Split(OkWin, "\\")
For hCount = 0 To UBound(OkWin)
If Len(OkWin(hCount)) > 0 Then
'MsgBox OkWin(hCount)
'MsgBox GetWinName(OkWin(hCount))
AppActivate GetWinName(OkWin(hCount))
SendKeys "{F5}"
DoEvents
End If
Next
End If
End Sub

Function GetWinName(ByVal WinID As Long) As String
On Error Resume Next

If WinID < 1 Then Exit Function
Dim Length, WinTitle$
Length = GetWindowTextLength(WinID)
WinTitle$ = Space$(Length + 1)
Length = GetWindowText(WinID, WinTitle$, Length + 1)
GetWinName = WinTitle$
End Function

Private Sub Command1_Click()
If Text1.Text = "" Or Text2.Text = "" Then
MsgBox "输入不全", vbCritical, "提示"
Exit Sub
End If
Timer1.Enabled = True
Timer1.Interval = Val(Text2.Text) * 500
Command1.Enabled = False
Command2.Enabled = True
Text1.Enabled = False
Text2.Enabled = False
End Sub

Private Sub Command2_Click()
Timer1.Enabled = False
Command1.Enabled = True
Command2.Enabled = False
Text1.Enabled = True
Text2.Enabled = True
End Sub

Private Sub Form_Load()
Command1.Enabled = True
Command2.Enabled = False
End Sub

Private Sub Timer1_Timer()
On Error Resume Next

Call SendInfo(Text1.Text)
End Sub

把F1键找东西卡下去