procedure TMainForm.Button1Click(Sender: TObject);
var
st:TStrings;
begin
st:=TStrings.Create;
with TinyTable do
begin
DisableControls;
open;
first;
while not eof do
begin
// if st.indexof(FieldByName('RegName').AsString) = -1 then
st.Add(FieldByName('RegName').AsString);
next;
end;
EnableControls;
Listbox1.Items:=st;
end;
end;
我把那锦渤的程序改成上面的还是不对啊,我用的是TinyDB数据库,出现的错误是运行时产生的,abstract error!!哪位知道?帮帮忙。