ivrstudio.dpr

来自「以可视的方式画IVR语音导航的流程,并把流程做为源文件保存起来」· DPR 代码 · 共 33 行

DPR
33
字号
program IVRStudio;



{$R 'cur.res' 'cur.rc'}

uses
  ExceptionLog,
  Forms,
  Flash,
  main_ in 'main_.pas' {main},
  property_ in 'property_.pas' {PropertyForm},
  ProjectProperty_ in 'ProjectProperty_.pas' {ProjectProperty},
  SetupGernal_ in 'SetupGernal_.pas' {SetupGernal},
  define_ in 'define_.pas' {define},
  IVREngineType in 'IVREngineType.pas',
  SelectIVR_ in 'SelectIVR_.pas' {SelectIVR},
  viewsub in 'viewsub.pas' {Frm_ViewSub},
  Loading in 'Loading.pas' {Frm_Loading},
  uExpSubFlow in 'uExpSubFlow.pas';

{$R *.RES}


begin
  FlashForm := TFlashForm.Create(Application, 11, True);
  FlashForm.AddStatusText('初始化窗体');
  Application.Initialize;
  Application.Title := 'Visual IVR Studio';
  Application.CreateForm(Tmain, main);
  Application.Run;
end.

⌨️ 快捷键说明

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