u_proxriptor_syntax.pas

来自「Voice Commnucation Components for Delphi」· PAS 代码 · 共 68 行

PAS
68
字号

(*
	----------------------------------------------

	  u_proxriptor_syntax.pas
	  vcScriptor demo application - script syntax reference form
	  Voice Communicator VCL components 2.5 Pro

	----------------------------------------------
	  This source code cannot be used without
	  proper permission granted to you as a private
	  person or an entity by the Lake of Soft, Ltd

	  Visit http://lakeofsoft.com/ for details.

	  Copyright (c) 2001, 2007 Lake of Soft, Ltd
		     All rights reserved
	----------------------------------------------

	  created by:
		Lake, 26 Jul 2002

	  modified by:
		Lake, Jul 2002
		Lake, May 2003

	----------------------------------------------
*)

{$I unaDef.inc}

unit u_proxriptor_syntax;

interface

uses
  Windows, Messages, SysUtils, Classes, Controls, Forms,
  StdCtrls, ExtCtrls;

type
  Tc_form_syntax = class(TForm)
    c_memo_syntax: TMemo;
    Panel1: TPanel;
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  c_form_syntax: Tc_form_syntax;


implementation


{$R *.dfm}

procedure Tc_form_syntax.Button1Click(Sender: TObject);
begin
  Close();
end;

end.

⌨️ 快捷键说明

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