📄 vctalknow.dpr
字号:
(*
----------------------------------------------
vcTalkNow.dpr
vcTalkNow demo application - project source
----------------------------------------------
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, ?? Jun 2002
modified by:
Lake, Jun-Dec 2002
Lake, Jan-May 2003
Lake, Aug 2005
----------------------------------------------
*)
{$I unaDef.inc }
program
vcTalkNow;
uses
Forms,
unaUtils,
u_vcTalkNow_main in 'u_vcTalkNow_main.pas' {c_form_main},
u_common_audioConfig in '..\common\u_common_audioConfig.pas' {c_form_common_audioConfig},
u_vcTalkNow_about in 'u_vcTalkNow_about.pas' {c_form_about};
{$R *.res}
{$R unaWindowsXP.res } // we are OK with XP themes
begin
Application.Initialize;
Application.Title := 'VC 2.5 Pro - Talk now demo';
Application.CreateForm(Tc_form_main, c_form_main);
Application.CreateForm(Tc_form_common_audioConfig, c_form_common_audioConfig);
Application.CreateForm(Tc_form_about, c_form_about);
Application.Run;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -