u_findsqlserver.~pas

来自「orcl与sql的数据转移」· ~PAS 代码 · 共 34 行

~PAS
34
字号
unit U_FindSqlServer;

interface

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

type
  TForm1 = class(TForm)
    lbl1: TLabel;
    lbl2: TLabel;
    img1: TImage;
    bvl1: TBevel;
    lbl3: TLabel;
    lst_SQLSrvList: TListBox;
    BtnOK: TBitBtn;
    BtnCancel: TBitBtn;
    bvl2: TBevel;
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

end.

⌨️ 快捷键说明

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