C
cowbird
Unregistered / Unconfirmed
GUEST, unregistred user!
我在Unit1窗体中调用单元Unit2中的过程:Unit2.UseADOQuery,
会报错误:'Access violation at address 00481CEC in module 'project1.exe'. Read of address FFFFFFF.
为何?
是不是需要加ADOQuery1:=TADOQuery.create(self) ?
有人是否可以提供在没有窗体的单元中使用ADOQuery控件的程序代码
单元unit2的代码:
unit Unit2;
interface
uses
ADODB,StdCtrls;
ADOQuery1:TADOQuery;
procedure UseADOQuery;
implementation
users Unit1;
procedure UseADOQuery;
begin
// ADOQuery1.connection:=form1.ADOConnection1;
ADOQuery1.SQL.Clear;
end;
end.
会报错误:'Access violation at address 00481CEC in module 'project1.exe'. Read of address FFFFFFF.
为何?
是不是需要加ADOQuery1:=TADOQuery.create(self) ?
有人是否可以提供在没有窗体的单元中使用ADOQuery控件的程序代码
单元unit2的代码:
unit Unit2;
interface
uses
ADODB,StdCtrls;
ADOQuery1:TADOQuery;
procedure UseADOQuery;
implementation
users Unit1;
procedure UseADOQuery;
begin
// ADOQuery1.connection:=form1.ADOConnection1;
ADOQuery1.SQL.Clear;
end;
end.