类似Access查找中的记忆功能
procedure TComLocateFrm.LocateBtnClick(Sender: TObject); var setLoOptions : TLocateOptions; i : integer; slKeys : TStrings; begin if ComboBox1.Items.IndexOf(ComboBox1.Text)0 then try slKeys := TStringList.Create; slKeys.AddStrings(ComboBox
procedure TComLocateFrm.LocateBtnClick(Sender: TObject);
var
setLoOptions : TLocateOptions;
i : integer;
slKeys : TStrings;
begin
if ComboBox1.Items.IndexOf(ComboBox1.Text) try
slKeys := TStringList.Create;
slKeys.AddStrings(ComboBox1.Items);
ComboBox1.Items.Clear;
ComboBox1.Items.Add(ComboBox1.Text);
for i := 0 to 8 do
if i ComboBox1.Items.Add(slKeys.Strings[i]);
finally
slKeys.Free;
end
else begin
i := ComboBox1.Items.IndexOf(ComboBox1.Text);
ComboBox1.Items.Insert(0,ComboBox1.Text);
ComboBox1.Items.Delete(i+1);
ComboBox1.ItemIndex := 0;
end;
if rdoExactly.Checked then
setLoOptions := []
else
setLoOptions := [loPartialKey];
if Not DesDataSet.Locate('ZTM', ComboBox1.Text, setLoOptions) then
MessageBox(Handle, '没有找到符合条件的记录。', '提示', 0+64);
end;
本文作者:
推荐阅读
-
如何在Oracle 中实现类似自动增加 ID 的功能?_PHP教程
-
如何在smarty中增加类似foreach的功能自动加载数据
-
如何在Oracle 中实现类似自动增加 ID 的功能?_PHP教程
-
MySQL中实现类似Oracle的SYS_CONNECT_BY_PATH功能
-
hive中实现类似MySQL中的group_concat功能
-
SQLserver中字符串查找功能patindex和charindex的区别
-
MySQL实现类似Oracle中的decode()函数的功能
-
用SQL语句查找Access中某表是否存在的小技巧
-
SQLserver中字符串查找功能patindex和charindex的区别
-
SQLserver中字符串查找功能patindex和charindex的区别