M
matcher
Unregistered / Unconfirmed
GUEST, unregistred user!
我采用ACCESS数据库,窗体放了一个ADOQuery组件,名字是CountQuery。并自定义了一个过程,代码如下:
procedure CountRecord;
var
v_RecordCount:word;
begin
with CountQuery do
begin
close;
SQL.clear;
SQL.add('select count(*) as lscount from main');
open;
v_RecordCount:=CountQuery.fieldbyname('lscount').asinteger;
close;
end;
end;
并在type部分定义了procedure CountRecord;,type部分也定义了CountQuery:TADOQuery;
执行的时候提示CountQuery未定义,无法编译。
但是如果把代码部分直接加入Form.OnCreate过程中,就没有任何问题。
各位高手帮忙看看哪里有问题了?谢谢!
procedure CountRecord;
var
v_RecordCount:word;
begin
with CountQuery do
begin
close;
SQL.clear;
SQL.add('select count(*) as lscount from main');
open;
v_RecordCount:=CountQuery.fieldbyname('lscount').asinteger;
close;
end;
end;
并在type部分定义了procedure CountRecord;,type部分也定义了CountQuery:TADOQuery;
执行的时候提示CountQuery未定义,无法编译。
但是如果把代码部分直接加入Form.OnCreate过程中,就没有任何问题。
各位高手帮忙看看哪里有问题了?谢谢!