操作DBgird
已经用ADOQuery把数据
读到dbgird上了
问题
想做一个查询功能 在Edit中输入内容
在dbgird中数据自动移到匹配Edit中输入内容
就像SQL联机丛书里面的索引那样
只是他是用的Listbox我想用在dbgird上
[解决办法]
void __fastcall TForm1::Button1Click(TObject *Sender)
{
String strKeyValue = Edit1->Text;
ADOQuery1->Locate("你的字段名", strKeyValue, TLocateOptions());
}