请问多线程中tevent的创建方法?(100分)

  • 主题发起人 主题发起人 tuiger
  • 开始时间 开始时间
T

tuiger

Unregistered / Unconfirmed
GUEST, unregistred user!
请问TEvent.Create后的参数该如何写
它的说明为:
Instantiates a TEvent object to represent an event object.
type
PSecurityAttributes = ^TSecurityAttributes;
TSecurityAttributes = record
nLength: DWORD;
lpSecurityDescriptor: Pointer;
bInheritHandle: BOOL;
end;

constructor Create(EventAttributes: PSecurityAttributes;
ManualReset, InitialState: Boolean;
const Name: string
我是这样写的:
Event_Readable.Create(nil,True,False,'Event_Readable');
可运行时程序就报错,
不知该如何写这个Event.Create才正确
 
Event_Readable := TEvent.Create(nil,True,False,'Event_Readable');
 
感谢你的回答,给你加100分,嘻嘻,我可分不多了,希望以后多指教呀
 
后退
顶部