Z
zpselect
Unregistered / Unconfirmed
GUEST, unregistred user!
我的意义
rocedure TForm1.GetBitDept( V_id,V_Code,V_Name: string);
begin
AdoQuery.close;
AdoQuery.sql.clear;
AdoQuery.sql.text:='select name,age from table1 where id='''+V_id+'''';
AdoQuery.open;
V_Code := AdoQuery.Fields[0].Asstring;
V_name:=AdoQuery.Fields[1].Asstring;
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
GetBitDept(edit1.Text,edit2.Text);//再将两返回值给Edit1 和 Edit2
end;
程序在运行时,Edit1和Edit2中的值并没有!请问该怎么写才行?
rocedure TForm1.GetBitDept( V_id,V_Code,V_Name: string);
begin
AdoQuery.close;
AdoQuery.sql.clear;
AdoQuery.sql.text:='select name,age from table1 where id='''+V_id+'''';
AdoQuery.open;
V_Code := AdoQuery.Fields[0].Asstring;
V_name:=AdoQuery.Fields[1].Asstring;
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
GetBitDept(edit1.Text,edit2.Text);//再将两返回值给Edit1 和 Edit2
end;
程序在运行时,Edit1和Edit2中的值并没有!请问该怎么写才行?