200分求解:模拟按健的问题!!!(200分)

  • 主题发起人 主题发起人 lyhold
  • 开始时间 开始时间
L

lyhold

Unregistered / Unconfirmed
GUEST, unregistred user!
200分求解:模拟按健的问题<br>我在做一个暴力破解的实验小程序,现在可以取的另外一个窗口的子控件(比如password的<br>edit),我循环往里面复值,按后模拟一下回车,让系统检测一下密码是否对,<br>现在是如何让哪儿密码控件的到焦点<br>&nbsp; &nbsp; &nbsp; &nbsp; //复值<br>&nbsp; &nbsp; &nbsp; &nbsp; SendMessage(hwnd, WM_SETTEXT, 0, lParam);<br>&nbsp; &nbsp; &nbsp; &nbsp; //模拟按健<br>&nbsp; &nbsp; &nbsp; &nbsp; SendMessage(hwnd,wm_keydown,vk_tab,0);<br>不行<br>
 
//讲剪贴版上的字符串年贴在窗口控件上<br>procedure TForm1.SendKeys;<br>var<br>&nbsp; &nbsp; i:integer;<br>&nbsp; &nbsp; focushld,windowhld:hwnd;<br>&nbsp; &nbsp; threadld:dword;<br>&nbsp; &nbsp; ch: byte;<br>&nbsp; &nbsp; p:TPoint;<br>begin<br>&nbsp; windowhld:=GetForegroundWindow;<br>&nbsp; threadld:=GetWindowThreadProcessId(Windowhld,nil);<br>&nbsp; AttachThreadInput(GetCurrentThreadId,threadld,true);<br>&nbsp; getcursorpos(p); //查鼠标坐标<br>&nbsp; Focushld:=WindowFromPoint(p); //返回句柄<br>&nbsp; AttachThreadInput(GetCurrentThreadId,threadld,false);<br>&nbsp; if (focushld=0) then<br>&nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp;Exit;<br>&nbsp; &nbsp; end;<br>&nbsp; SendMessage(focushld, WM_Paste, 0, 0);<br>end;<br>//随机产生字符串,然后发送<br>procedure TForm1.Timer1Timer(Sender: TObject);<br>var<br>&nbsp; &nbsp;i:integer;<br>&nbsp; &nbsp;j:Integer;<br>begin<br>&nbsp; &nbsp;randomize();<br>&nbsp; &nbsp;//随机产生字符串<br>&nbsp; &nbsp;for i:=1 to 8 do<br>&nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp;setlength(Code,i);<br>&nbsp; &nbsp; &nbsp;j:=Random(127);<br>&nbsp; &nbsp; &nbsp;while not (((j&gt;=48) and (j&lt;=57))or((j&gt;=65) and (j&lt;=90))or((j&gt;=97) and (j&lt;=122))) do<br>&nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp;j:=Random(127);<br>&nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp; &nbsp;Code:=Char(j);<br>&nbsp; &nbsp;end;<br>&nbsp; &nbsp;Edt.Text :=Code;<br>&nbsp; &nbsp;Edt.SelectAll;<br>&nbsp; &nbsp;Edt.CopyToClipboard;<br>&nbsp; &nbsp;SendKeys();<br>end;
 
我怎么样从程序里让其他程序的一个子空间的到焦点???已经知道他的句炳
 
用钩子吧,做一个DLL文件,再把它映射到其它进程里
 
能否给个例子,谢谢!!!
 
钩子我能检测到比如他双机事件,然后处理,但是跟这个有什么关系呢?<br>请指点,分数不是问题,谁有暴力破解释的例子,学习!!!
 
真的没人会吗???<br>跟个例子也行!!!![red][/red]
 
borland自己的粒子都不行!!!!!!!<br>borland自己的粒子都不行!!!!!!!borland自己的粒子都不行!!!!!!!borland自己的粒子都不行!!!!!!!borland自己的粒子都不行!!!!!!!<br><br><br><br><br><br>&nbsp;type<br>&nbsp; &nbsp;PFindWindowStruct = ^TFindWindowStruct;<br>&nbsp; &nbsp;TFindWindowStruct = record<br>&nbsp; &nbsp; &nbsp;Caption : string;<br>&nbsp; &nbsp; &nbsp;ClassName : string;<br>&nbsp; &nbsp; &nbsp;WindowHandle : THandle;<br>&nbsp; &nbsp;end;<br><br>&nbsp;function EnumWindowsProc(hWindow : hWnd;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; lParam &nbsp;: LongInt) : Bool<br>&nbsp;{$IFDEF Win32} stdcall; {$ELSE} ; export; {$ENDIF}<br>&nbsp;var<br>&nbsp; &nbsp;lpBuffer : PChar;<br>&nbsp; &nbsp;WindowCaptionFound : bool;<br>&nbsp; &nbsp;ClassNameFound : bool;<br><br>&nbsp;begin<br>&nbsp; &nbsp;GetMem(lpBuffer, 255);<br>&nbsp; &nbsp;Result := True;<br>&nbsp; &nbsp;WindowCaptionFound := False;<br>&nbsp; &nbsp;ClassNameFound := False;<br><br>&nbsp; &nbsp;try<br>&nbsp; &nbsp; &nbsp;if GetWindowText(hWindow, lpBuffer, 255) &gt; 0 then<br>&nbsp; &nbsp; &nbsp; &nbsp;if Pos(PFindWindowStruct(lParam).Caption, StrPas(lpBuffer)) &gt; 0<br>&nbsp; &nbsp; &nbsp; &nbsp; then WindowCaptionFound := true;<br><br>&nbsp; &nbsp; &nbsp;if PFindWindowStruct(lParam).ClassName = '' then<br>&nbsp; &nbsp; &nbsp; &nbsp;ClassNameFound := True else<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if GetClassName(hWindow, lpBuffer, 255) &gt; 0 then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if Pos(PFindWindowStruct(lParam).ClassName, StrPas(lpBuffer))<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt; 0 then ClassNameFound := True;<br><br>&nbsp; &nbsp; &nbsp;if (WindowCaptionFound and ClassNameFound) then begin<br>&nbsp; &nbsp; &nbsp; &nbsp;PFindWindowStruct(lParam).WindowHandle := hWindow;<br>&nbsp; &nbsp; &nbsp; &nbsp;Result := False;<br>&nbsp; &nbsp; &nbsp;end;<br><br>&nbsp; &nbsp;finally<br>&nbsp; &nbsp; &nbsp;FreeMem(lpBuffer, sizeof(lpBuffer^));<br>&nbsp; &nbsp;end;<br>&nbsp;end;<br><br>&nbsp;function FindAWindow(Caption : string;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ClassName : string) : THandle;<br>&nbsp;var<br>&nbsp; &nbsp;WindowInfo : TFindWindowStruct;<br><br>&nbsp;begin<br>&nbsp; &nbsp;with WindowInfo do begin<br>&nbsp; &nbsp; &nbsp;Caption := Caption;<br>&nbsp; &nbsp; &nbsp;ClassName := ClassName;<br>&nbsp; &nbsp; &nbsp;WindowHandle := 0;<br>&nbsp; &nbsp; &nbsp;EnumWindows(@EnumWindowsProc, LongInt(@WindowInfo));<br>&nbsp; &nbsp; &nbsp;FindAWindow := WindowHandle;<br>&nbsp; &nbsp;end;<br>&nbsp;end;<br><br>&nbsp;procedure TForm1.Button1Click(Sender: TObject);<br>&nbsp;var<br>&nbsp; &nbsp;TheWindowHandle : THandle;<br>&nbsp;begin<br>&nbsp; &nbsp;TheWindowHandle := FindAWindow('Netscape - ', '');<br>&nbsp; &nbsp;if TheWindowHandle = 0 then<br>&nbsp; &nbsp; &nbsp;ShowMessage('Window Not Found!') else<br>&nbsp; &nbsp; &nbsp;BringWindowToTop(TheWindowHandle);<br>&nbsp;end;<br>
 
直接模拟按键吧<br>unit SendKey;<br><br>interface<br><br>uses Windows,Messages,SysUtils,MyMessageBox;<br><br>Function SendKeys(SendKeysString : PChar; Wait : Boolean) : Boolean;<br><br>implementation<br><br><br>(*<br>Converts a string of characters and key names to keyboard events and<br>passes them to Windows.<br><br>Example syntax:<br><br>SendKeys('abc123{left}{left}{left}def{end}456{left 6}ghi{end}789', True);<br>*)<br>Function SendKeys(SendKeysString : PChar; Wait : Boolean) : Boolean;<br>type<br>&nbsp; WBytes = array[0..pred(SizeOf(Word))] of Byte;<br><br>&nbsp; TSendKey = record<br>&nbsp; &nbsp; Name : ShortString;<br>&nbsp; &nbsp; VKey : Byte;<br>&nbsp; end;<br><br>const<br>&nbsp; {Array of keys that SendKeys recognizes.<br><br>&nbsp; If you add to this list, you must be sure to keep it sorted alphabetically<br>&nbsp; by Name because a binary search routine is used to scan it.}<br><br>&nbsp; MaxSendKeyRecs = 41;<br>&nbsp; SendKeyRecs : array[1..MaxSendKeyRecs] of TSendKey =<br>&nbsp; (<br>&nbsp; &nbsp;(Name:'BKSP'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;VKey:VK_BACK),<br>&nbsp; &nbsp;(Name:'BS'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;VKey:VK_BACK),<br>&nbsp; &nbsp;(Name:'BACKSPACE'; &nbsp; &nbsp; &nbsp; VKey:VK_BACK),<br>&nbsp; &nbsp;(Name:'BREAK'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; VKey:VK_CANCEL),<br>&nbsp; &nbsp;(Name:'CAPSLOCK'; &nbsp; &nbsp; &nbsp; &nbsp;VKey:VK_CAPITAL),<br>&nbsp; &nbsp;(Name:'CLEAR'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; VKey:VK_CLEAR),<br>&nbsp; &nbsp;(Name:'DEL'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; VKey:VK_DELETE),<br>&nbsp; &nbsp;(Name:'DELETE'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;VKey:VK_DELETE),<br>&nbsp; &nbsp;(Name:'DOWN'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;VKey:VK_DOWN),<br>&nbsp; &nbsp;(Name:'END'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; VKey:VK_END),<br>&nbsp; &nbsp;(Name:'ENTER'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; VKey:VK_RETURN),<br>&nbsp; &nbsp;(Name:'ESC'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; VKey:VK_ESCAPE),<br>&nbsp; &nbsp;(Name:'ESCAPE'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;VKey:VK_ESCAPE),<br>&nbsp; &nbsp;(Name:'F1'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;VKey:VK_F1),<br>&nbsp; &nbsp;(Name:'F10'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; VKey:VK_F10),<br>&nbsp; &nbsp;(Name:'F11'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; VKey:VK_F11),<br>&nbsp; &nbsp;(Name:'F12'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; VKey:VK_F12),<br>&nbsp; &nbsp;(Name:'F13'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; VKey:VK_F13),<br>&nbsp; &nbsp;(Name:'F14'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; VKey:VK_F14),<br>&nbsp; &nbsp;(Name:'F15'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; VKey:VK_F15),<br>&nbsp; &nbsp;(Name:'F16'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; VKey:VK_F16),<br>&nbsp; &nbsp;(Name:'F2'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;VKey:VK_F2),<br>&nbsp; &nbsp;(Name:'F3'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;VKey:VK_F3),<br>&nbsp; &nbsp;(Name:'F4'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;VKey:VK_F4),<br>&nbsp; &nbsp;(Name:'F5'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;VKey:VK_F5),<br>&nbsp; &nbsp;(Name:'F6'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;VKey:VK_F6),<br>&nbsp; &nbsp;(Name:'F7'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;VKey:VK_F7),<br>&nbsp; &nbsp;(Name:'F8'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;VKey:VK_F8),<br>&nbsp; &nbsp;(Name:'F9'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;VKey:VK_F9),<br>&nbsp; &nbsp;(Name:'HELP'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;VKey:VK_HELP),<br>&nbsp; &nbsp;(Name:'HOME'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;VKey:VK_HOME),<br>&nbsp; &nbsp;(Name:'INS'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; VKey:VK_INSERT),<br>&nbsp; &nbsp;(Name:'LEFT'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;VKey:VK_LEFT),<br>&nbsp; &nbsp;(Name:'NUMLOCK'; &nbsp; &nbsp; &nbsp; &nbsp; VKey:VK_NUMLOCK),<br>&nbsp; &nbsp;(Name:'PGDN'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;VKey:VK_NEXT),<br>&nbsp; &nbsp;(Name:'PGUP'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;VKey:VK_PRIOR),<br>&nbsp; &nbsp;(Name:'PRTSC'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; VKey:VK_PRINT),<br>&nbsp; &nbsp;(Name:'RIGHT'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; VKey:VK_RIGHT),<br>&nbsp; &nbsp;(Name:'SCROLLLOCK'; &nbsp; &nbsp; &nbsp;VKey:VK_SCROLL),<br>&nbsp; &nbsp;(Name:'TAB'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; VKey:VK_TAB),<br>&nbsp; &nbsp;(Name:'UP'; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;VKey:VK_UP)<br>&nbsp; );<br><br>&nbsp; {Extra VK constants missing from Delphi's Windows API interface}<br>&nbsp; VK_NULL=0;<br>&nbsp; VK_SemiColon=186;<br>&nbsp; VK_Equal=187;<br>&nbsp; VK_Comma=188;<br>&nbsp; VK_Minus=189;<br>&nbsp; VK_Period=190;<br>&nbsp; VK_Slash=191;<br>&nbsp; VK_BackQuote=192;<br>&nbsp; VK_LeftBracket=219;<br>&nbsp; VK_BackSlash=220;<br>&nbsp; VK_RightBracket=221;<br>&nbsp; VK_Quote=222;<br>&nbsp; VK_Last=VK_Quote;<br><br>&nbsp; ExtendedVKeys : set of byte =<br>&nbsp; [VK_Up,<br>&nbsp; &nbsp;VK_Down,<br>&nbsp; &nbsp;VK_Left,<br>&nbsp; &nbsp;VK_Right,<br>&nbsp; &nbsp;VK_Home,<br>&nbsp; &nbsp;VK_End,<br>&nbsp; &nbsp;VK_Prior, &nbsp;{PgUp}<br>&nbsp; &nbsp;VK_Next, &nbsp; {PgDn}<br>&nbsp; &nbsp;VK_Insert,<br>&nbsp; &nbsp;VK_Delete];<br><br>const<br>&nbsp; INVALIDKEY = $FFFF {Unsigned -1};<br>&nbsp; VKKEYSCANSHIFTON = $01;<br>&nbsp; VKKEYSCANCTRLON = $02;<br>&nbsp; VKKEYSCANALTON = $04;<br>var<br>&nbsp; UsingParens, ShiftDown, ControlDown, AltDown, FoundClose : Boolean;<br>&nbsp; PosSpace : Byte;<br>&nbsp; I, L : Integer;<br>&nbsp; NumTimes, MKey : Word;<br>&nbsp; KeyString : String[20];<br>&nbsp; AllocationSize: Integer;<br><br>procedure DisplayMessage(Message : PChar);<br>begin<br>&nbsp; ShowMyMessage(nil,'密码输入',Message,0);<br>end;<br><br>function BitSet(BitTable, BitMask : Byte) : Boolean;<br>begin<br>&nbsp; Result:=ByteBool(BitTable and BitMask);<br>end;<br><br>procedure SetBit(var BitTable : Byte; BitMask : Byte);<br>begin<br>&nbsp; BitTable:=BitTable or Bitmask;<br>end;<br><br>Procedure KeyboardEvent(VKey, ScanCode : Byte; Flags : Longint);<br>var<br>&nbsp; KeyboardMsg : TMsg;<br>begin<br>&nbsp; keybd_event(VKey, ScanCode, Flags,0);<br>&nbsp; If (Wait) then While (PeekMessage(KeyboardMsg,0,WM_KEYFIRST, WM_KEYLAST, PM_REMOVE)) do begin<br>&nbsp; &nbsp; TranslateMessage(KeyboardMsg);<br>&nbsp; &nbsp; DispatchMessage(KeyboardMsg);<br>&nbsp; end;<br>end;<br><br>Procedure SendKeyDown(VKey: Byte; NumTimes : Word; GenUpMsg : Boolean);<br>var<br>&nbsp; Cnt : Word;<br>&nbsp; ScanCode : Byte;<br>&nbsp; NumState : Boolean;<br>&nbsp; KeyBoardState : TKeyboardState;<br>begin<br>&nbsp; If (VKey=VK_NUMLOCK) then begin<br>&nbsp; &nbsp; NumState:=ByteBool(GetKeyState(VK_NUMLOCK) and 1);<br>&nbsp; &nbsp; GetKeyBoardState(KeyBoardState);<br>&nbsp; &nbsp; If NumState then KeyBoardState[VK_NUMLOCK]:=(KeyBoardState[VK_NUMLOCK] and not 1)<br>&nbsp; &nbsp; else KeyBoardState[VK_NUMLOCK]:=(KeyBoardState[VK_NUMLOCK] or 1);<br>&nbsp; &nbsp; SetKeyBoardState(KeyBoardState);<br>&nbsp; &nbsp; exit;<br>&nbsp; end;<br><br>&nbsp; ScanCode:=Lo(MapVirtualKey(VKey,0));<br>&nbsp; For Cnt:=1 to NumTimes do<br>&nbsp; &nbsp; If (VKey in ExtendedVKeys)then begin<br>&nbsp; &nbsp; &nbsp; KeyboardEvent(VKey, ScanCode, KEYEVENTF_EXTENDEDKEY);<br>&nbsp; &nbsp; &nbsp; If (GenUpMsg) then<br>&nbsp; &nbsp; &nbsp; &nbsp; KeyboardEvent(VKey, ScanCode, KEYEVENTF_EXTENDEDKEY or KEYEVENTF_KEYUP)<br>&nbsp; &nbsp; end else begin<br>&nbsp; &nbsp; &nbsp; KeyboardEvent(VKey, ScanCode, 0);<br>&nbsp; &nbsp; &nbsp; If (GenUpMsg) then KeyboardEvent(VKey, ScanCode, KEYEVENTF_KEYUP);<br>&nbsp; &nbsp; end;<br>end;<br><br>Procedure SendKeyUp(VKey: Byte);<br>var<br>&nbsp; ScanCode : Byte;<br>begin<br>&nbsp; ScanCode:=Lo(MapVirtualKey(VKey,0));<br>&nbsp; If (VKey in ExtendedVKeys)then<br>&nbsp; &nbsp; KeyboardEvent(VKey, ScanCode, KEYEVENTF_EXTENDEDKEY and KEYEVENTF_KEYUP)<br>&nbsp; else KeyboardEvent(VKey, ScanCode, KEYEVENTF_KEYUP);<br>end;<br><br>Procedure SendKey(MKey: Word; NumTimes : Word; GenDownMsg : Boolean);<br>begin<br>&nbsp; If (BitSet(Hi(MKey),VKKEYSCANSHIFTON)) then SendKeyDown(VK_SHIFT,1,False);<br>&nbsp; If (BitSet(Hi(MKey),VKKEYSCANCTRLON)) then SendKeyDown(VK_CONTROL,1,False);<br>&nbsp; If (BitSet(Hi(MKey),VKKEYSCANALTON)) then SendKeyDown(VK_MENU,1,False);<br>&nbsp; SendKeyDown(Lo(MKey), NumTimes, GenDownMsg);<br>&nbsp; If (BitSet(Hi(MKey),VKKEYSCANSHIFTON)) then SendKeyUp(VK_SHIFT);<br>&nbsp; If (BitSet(Hi(MKey),VKKEYSCANCTRLON)) then SendKeyUp(VK_CONTROL);<br>&nbsp; If (BitSet(Hi(MKey),VKKEYSCANALTON)) then SendKeyUp(VK_MENU);<br>end;<br><br>{Implements a simple binary search to locate special key name strings}<br><br>Function StringToVKey(KeyString : ShortString) : Word;<br>var<br>&nbsp; Found, Collided : Boolean;<br>&nbsp; Bottom, Top, Middle : Byte;<br>begin<br>&nbsp; Result:=INVALIDKEY;<br>&nbsp; Bottom:=1;<br>&nbsp; Top:=MaxSendKeyRecs;<br>&nbsp; Found:=false;<br>&nbsp; Middle:=(Bottom+Top) div 2;<br>&nbsp; Repeat<br>&nbsp; &nbsp; Collided:=((Bottom=Middle) or (Top=Middle));<br>&nbsp; &nbsp; If (KeyString=SendKeyRecs[Middle].Name) then begin<br>&nbsp; &nbsp; &nbsp; &nbsp;Found:=True;<br>&nbsp; &nbsp; &nbsp; &nbsp;Result:=SendKeyRecs[Middle].VKey;<br>&nbsp; &nbsp; end else begin<br>&nbsp; &nbsp; &nbsp; &nbsp;If (KeyString&gt;SendKeyRecs[Middle].Name) then Bottom:=Middle<br>&nbsp; &nbsp; &nbsp; &nbsp;else Top:=Middle;<br>&nbsp; &nbsp; &nbsp; &nbsp;Middle:=(Succ(Bottom+Top)) div 2;<br>&nbsp; &nbsp; end;<br>&nbsp; Until (Found or Collided);<br>&nbsp; If (Result=INVALIDKEY) then DisplayMessage('程序出现未知错误');<br>end;<br><br>procedure PopUpShiftKeys;<br>begin<br>&nbsp; If (not UsingParens) then begin<br>&nbsp; &nbsp; If ShiftDown then SendKeyUp(VK_SHIFT);<br>&nbsp; &nbsp; If ControlDown then SendKeyUp(VK_CONTROL);<br>&nbsp; &nbsp; If AltDown then SendKeyUp(VK_MENU);<br>&nbsp; &nbsp; ShiftDown:=false;<br>&nbsp; &nbsp; ControlDown:=false;<br>&nbsp; &nbsp; AltDown:=false;<br>&nbsp; end;<br>end;<br><br>begin<br>&nbsp; AllocationSize:=MaxInt;<br>&nbsp; Result:=false;<br>&nbsp; UsingParens:=false;<br>&nbsp; ShiftDown:=false;<br>&nbsp; ControlDown:=false;<br>&nbsp; AltDown:=false;<br>&nbsp; I:=0;<br>&nbsp; L:=StrLen(SendKeysString);<br>&nbsp; If (L&gt;AllocationSize) then L:=AllocationSize;<br>&nbsp; If (L=0) then Exit;<br><br>&nbsp; While (I&lt;L) do begin<br>&nbsp; &nbsp; case SendKeysString of<br>&nbsp; &nbsp; '(' : begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; UsingParens:=True;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Inc(I);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; ')' : begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; UsingParens:=False;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; PopUpShiftKeys;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Inc(I);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; '%' : begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AltDown:=True;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SendKeyDown(VK_MENU,1,False);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Inc(I);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; '+' : &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ShiftDown:=True;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SendKeyDown(VK_SHIFT,1,False);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Inc(I);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp; '^' : &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ControlDown:=True;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SendKeyDown(VK_CONTROL,1,False);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Inc(I);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp; '{' : begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NumTimes:=1;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If (SendKeysString[Succ(I)]='{') then begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MKey:=VK_LEFTBRACKET;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SetBit(Wbytes(MKey)[1],VKKEYSCANSHIFTON);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SendKey(MKey,1,True);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; PopUpShiftKeys;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Inc(I,3);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Continue;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; KeyString:='';<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FoundClose:=False;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; While (I&lt;=L) do begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Inc(I);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If (SendKeysString='}') then begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FoundClose:=True;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Inc(I);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Break;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; KeyString:=KeyString+Upcase(SendKeysString);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If (Not FoundClose) then begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;DisplayMessage('程序出现未知错误');<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Exit;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If (SendKeysString='}') then begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MKey:=VK_RIGHTBRACKET;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SetBit(Wbytes(MKey)[1],VKKEYSCANSHIFTON);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SendKey(MKey,1,True);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; PopUpShiftKeys;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Inc(I);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Continue;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; PosSpace:=Pos(' ',KeyString);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If (PosSpace&lt;&gt;0) then begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;NumTimes:=StrToInt(Copy(KeyString,Succ(PosSpace),Length(KeyString)-PosSpace));<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;KeyString:=Copy(KeyString,1,Pred(PosSpace));<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If (Length(KeyString)=1) then MKey:=vkKeyScan(KeyString[1])<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; else MKey:=StringToVKey(KeyString);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If (MKey&lt;&gt;INVALIDKEY) then begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SendKey(MKey,NumTimes,True);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; PopUpShiftKeys;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Continue;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; '~' : begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SendKeyDown(VK_RETURN,1,True);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; PopUpShiftKeys;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Inc(I);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; else &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;MKey:=vkKeyScan(SendKeysString);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;If (MKey&lt;&gt;INVALIDKEY) then begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SendKey(MKey,1,True);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;PopUpShiftKeys;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;end else DisplayMessage('程序出现未知错误');<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Inc(I);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; end;<br>&nbsp; end;<br>&nbsp; Result:=true;<br>&nbsp; PopUpShiftKeys;<br>end;<br><br>end.<br><br><br>我做过一些改动
 
先得到按钮的句柄,然后用postmessage(wnd,WM_KEYDOWN ,VK_Return,0);来模拟按钮被按下就可以了<br>
 
后退
顶部