asfind.pas

来自「delphi的超级好用的表格控件」· PAS 代码 · 共 48 行

PAS
48
字号
unit asfind;

interface

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  StdCtrls, ashlp, ExtCtrls;

type
  Tfinddlg = class(TForm)
    Label1: TLabel;
    findtext: TEdit;
    chkcase: TCheckBox;
    chkfull: TCheckBox;
    chkregular: TCheckBox;
    Button1: TButton;
    Button2: TButton;
    Button3: TButton;
    dir: TRadioGroup;
    where: TRadioGroup;
    procedure Button3Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  finddlg: Tfinddlg;

implementation

{$R *.DFM}

procedure Tfinddlg.Button3Click(Sender: TObject);
var
 findhlp:tfindhlp;
begin
 findhlp:=tfindhlp.create(self);
 try
  findhlp.showmodal;
 finally
  findhlp.free;
 end;
end;

end.

⌨️ 快捷键说明

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