mc_dlmcdj.~pas

来自「1、系统环境要求:所有程序均在Windows98/XP操作系统下测试运行。 2」· ~PAS 代码 · 共 30 行

~PAS
30
字号
unit MC_DLMCDJ;

interface

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;

type
  TDLMCDJ = class(TForm)
    procedure DBLookupComboBox1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  DLMCDJ: TDLMCDJ;

implementation

{$R *.DFM}

procedure TDLMCDJ.DBLookupComboBox1Click(Sender: TObject);
begin
     ADOTable2.Locate('小区名',DBLookupCombobox1.KeyValue,[loCaseInsensitive]);
end;

end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?