C cowboy1999 Unregistered / Unconfirmed GUEST, unregistred user! 2002-07-26 #1 假设一个TMyForm类型的窗口MyForm,知道其句柄handle,这样访问该窗口不行 TMyForm(handle),怎么才能根据句柄访问窗口
P Pipi. Unregistered / Unconfirmed GUEST, unregistred user! 2002-07-27 #2 function FindControl(Handle: HWnd): TWinControl; 如果你确定handle肯定就是TMyForm的,那么 TMyForm(FindControl(handle)) 否则,安全的方式是 c:=FindControl(handle); if c<>nil then if c is TmyForm then ……
function FindControl(Handle: HWnd): TWinControl; 如果你确定handle肯定就是TMyForm的,那么 TMyForm(FindControl(handle)) 否则,安全的方式是 c:=FindControl(handle); if c<>nil then if c is TmyForm then ……
C cb422 Unregistered / Unconfirmed GUEST, unregistred user! 2002-07-27 #3 如果你的handle是TMyForm类型可以,否则不行