📄 u_vcmp3demo_about.pas
字号:
(*
----------------------------------------------
u_vcMp3Demo_about.pas
Voice Communicator components version 2.5 Pro
MP3/Ogg Streaming Demo application - about 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, 21 Oct 2002
modified by:
Lake, Oct-Nov 2002
Lake, Jan-Dec 2003
Lake, Mar 2004
Lake, Oct 2005
----------------------------------------------
*)
{$I unaDef.inc}
unit
u_vcmp3Demo_about;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
Tc_form_about = class(TForm)
Memo1: TMemo;
Button1: TButton;
private
{ Private declarations }
public
{ Public declarations }
procedure doAboutEncode();
end;
var
c_form_about: Tc_form_about;
implementation
{$R *.dfm}
{ Tc_form_about }
// -- --
procedure Tc_form_about.doAboutEncode();
begin
showModal();
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -