vcpulsegen.dpr
来自「Voice Commnucation Components for Delphi」· DPR 代码 · 共 51 行
DPR
51 行
(*
----------------------------------------------
u_pulseGen_main.pas
Voice Communicator components version 2.5
VC Pulse Generator demo application - main form
----------------------------------------------
This source code cannot be used without
proper license granted to you as a private
person or an entity by the Lake of Soft, Ltd
Visit http://lakeofsoft.com/ for more information.
Copyright (c) 2001, 2007 Lake of Soft, Ltd
All rights reserved
----------------------------------------------
created by:
Lake, 03 Aug 2002
modified by:
Lake, Aug 2002
Lake, Jan-May 2003
----------------------------------------------
*)
{$I unaDef.inc}
program
vcPulseGen;
uses
Forms,
u_pulseGen_main in 'u_pulseGen_main.pas' {c_pg_main},
u_vcPulse_main in 'u_vcPulse_main.pas' {c_form_pulse};
{$R *.res}
{$R unaWindowsXP.res } // we are OK with XP themes
begin
Application.Initialize;
Application.Title := 'VC 2.5 Pro - Pulse Generator demo';
Application.CreateForm(Tc_pg_main, c_pg_main);
Application.Run;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?