|
unit UtStartGetPW;
interface
uses
Classes,UtGetuserPsd,sysutils;
type
TStartGetPW = class(TThread)
private
{ Private declarations }
protected
TS:TGetUnserPsd;
procedure Execute; override;
end;
implementation
uses UtMain;
{ Important: Methods and properties of objects in visual components can only be
used in a method called using Synchronize, for example,
Synchronize(UpdateCaption);
and UpdateCaption could look like,
procedure TStartGetPW.UpdateCaption;
begin
Form1.Caption := 'Updated in a thread';
end; }
{ TStartGetPW }
procedure TStartGetPW.Execute;
var
i:integer;
UNList:TStringList;
begin
freeonterminate:=true;
UNlist:=TStringList.Create;
UNLIST.LoadFromFile('username.txt');
for i:=0 to UNList.Count-1 do
begin
TS:=TGetunserpsd.Create(UNList.Strings[i],i);
sleep(StrToInt(FmMain.Edit2.Text)); //不要太快,否则打不开网页
end;
{ Place thread code here }
end;
end.
| 网游盗号木马实现手记 | 01-09 |
| 黑色技术蠕虫下载者[完整源码] | 11-01 |
| 利用BCB自己打造QQ炸弹 | 10-23 |
| 从内存中加载并启动一个exe(delp | 09-27 |
| 开启和关闭Windows xp 防火墙(de | 09-27 |
| 让你的程序通过XP防火墙(delphi编 | 09-27 |
| 如何让你的程序安全通过windows防 | 08-20 |
| 如何透过程序来控制 Windows (XP | 08-20 |
| 动易2005-2006算号器的源代码 | 08-11 |
| API对注册表进行操作(Delphi编程 | 07-30 |
| 一段隐藏注册表项的代码 | 07-26 |
| 了解VB编写病毒的大体方法 | 07-02 |