回复 2楼 SunQuan99
在RadioGroup1的OnClick事件里实现:点击某一个表名,显示该表的数据
self.ADOQryView.SQL.Add('select *');
self.ADOQryView.SQL.Add('from'+' '+RadioGroup1.Items[**]);
self.ADOQryView.Active:=True;
RadioGroup里有内容:
class
students
score
那么RadioGroup1.Items[0]的内容就是class;RadioGroup1.Items[1]的内容就是student;RadioGroup1.Items[2]的内容就是score;
现在我要在运行的时候,比如我选了class,[**]处值为0,选student[**]处值为1,;想问一下[**]处的这个函数要怎么写。
(不善表达,请见谅)