数
数据狂
Unregistered / Unconfirmed
GUEST, unregistred user!
procedure TForm1.Button1Click(Sender: TObject);
var
; ;hThread:Thandle; ;//定义一个句柄
; ;ThreadIDWord;
begin
; //创建线程,同时线程函数被调用
; hthread:=CreateThread(nil,0,@MyThreadfunc,nil,0,ThreadID);
; if hThread=0 then
; ; messagebox(Handle,'Didn’t Create a Thread',nil,MB_OK);
end;
检查语法错误,在
; hthread:=CreateThread(nil,0,@MyThreadfunc,nil,0,ThreadID);
行上,说缺少变量,为什么?(在第二个nil上)。
var
; ;hThread:Thandle; ;//定义一个句柄
; ;ThreadIDWord;
begin
; //创建线程,同时线程函数被调用
; hthread:=CreateThread(nil,0,@MyThreadfunc,nil,0,ThreadID);
; if hThread=0 then
; ; messagebox(Handle,'Didn’t Create a Thread',nil,MB_OK);
end;
检查语法错误,在
; hthread:=CreateThread(nil,0,@MyThreadfunc,nil,0,ThreadID);
行上,说缺少变量,为什么?(在第二个nil上)。