vcscriptor.dpr

来自「Voice Commnucation Components for Delphi」· DPR 代码 · 共 52 行

DPR
52
字号

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

	  vcScriptor.dpr
	  vcScriptor demo application - project source
	  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}

program vcScriptor;

uses
  unaUtils,
  Forms,
  u_proxriptor_main in 'u_proxriptor_main.pas' {f_proxriptor_main},
  u_proxriptor_syntax in 'u_proxriptor_syntax.pas' {c_form_syntax};

{$R *.res}

{$R unaWindowsXP.res }	// we are OK with XP themes

begin
  Application.Initialize;
  Application.Title := 'VC 2.5 Pro - Scripting Demo';
  Application.CreateForm(Tf_proxriptor_main, f_proxriptor_main);
  Application.CreateForm(Tc_form_syntax, c_form_syntax);
  Application.Run;
end.

⌨️ 快捷键说明

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