Recent Comments

This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

2012年8月15日 星期三

找出重疊的元件

.cpp //--------------------------------------------------------------------------- #include #pragma hdrstop #include "Unit2.h" //--------------------------------------------------------------------------- #pragma package(smart_init) #pragma resource "*.dfm" TForm2 *Form2; //--------------------------------------------------------------------------- __fastcall TForm2::TForm2(TComponent* Owner) : TForm(Owner) { } //--------------------------------------------------------------------------- void __fastcall TForm2::___TEST(TObject *Sender, TMouseButton...

2012年8月6日 星期一

移動滑鼠執行事件

  SetCursorPos(30,30); mouse_event(MOUSEEVENTF_LEFTDOWN,30,30,NULL,NULL); mouse_event(MOUSEEVENTF_LEFTUP,30,30,NULL,NULL); mouse_event(MOUSEEVENTF_LEFTDOWN,30,30,NULL,NULL); mouse_event(MOUSEEVENTF_LEFTUP,30,30,NULL,NUL...