L
lk628025
Unregistered / Unconfirmed
GUEST, unregistred user!
我用了下面一段代码后。。。。。
procedure TForm1.WMMove(var msg: TMessage);
begin
try
if Assigned(file_form) then
begin
with file_formdo
begin
file_form.Left := form1.StatusBar1.BoundsRect.Bottom;
file_form.left:=form1.Left;
file_form.top:=form1.BoundsRect.Bottom;
end;
end;
except
exit;
end;
end;
但现在引发了的问题,运行的程序关闭后出现如下对话框:
Project xxxx raised exception class EAeecssviolation with message 'Aeecssviolation at address 00000000 Read of address 00000000'.
Process stopped. Use Step or Run to continue.
我看哪位江湖好手能解出来!!!
procedure TForm1.WMMove(var msg: TMessage);
begin
try
if Assigned(file_form) then
begin
with file_formdo
begin
file_form.Left := form1.StatusBar1.BoundsRect.Bottom;
file_form.left:=form1.Left;
file_form.top:=form1.BoundsRect.Bottom;
end;
end;
except
exit;
end;
end;
但现在引发了的问题,运行的程序关闭后出现如下对话框:
Project xxxx raised exception class EAeecssviolation with message 'Aeecssviolation at address 00000000 Read of address 00000000'.
Process stopped. Use Step or Run to continue.
我看哪位江湖好手能解出来!!!