Ignore:
Timestamp:
Mar 31, 2010, 5:06:56 PM (14 years ago)
Author:
Kevin Toppenberg
Message:

Added functions to Templates, and Images tab

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cprs/branches/tmg-cprs/CPRS-Chart/CPRSChart.dpr

    r686 r729  
    307307  fImages in 'fImages.pas' {frmImages},
    308308  UploadImages in 'UploadImages.pas' {UploadForm},
    309   UploadProgress in 'UploadProgress.pas' {UploadProgressForm},
     309  frmImageTransferProgress in 'TMG_Extra\frmImageTransferProgress.pas' {ImageTransferForm},
    310310  fProbLex in 'fProbLex.pas' {frmPLLex},
    311311  fTIUView in 'fTIUView.pas' {frmTIUView},
     
    323323  EditTextU in 'TMG_Extra\EditTextU.pas' {EditTextForm},
    324324  ORNet in '..\CPRS-Lib\ORNet.pas',
    325   fTMGPrintingAnimation in 'TMG_Extra\fTMGPrintingAnimation.pas';
     325  fTMGPrintingAnimation in 'TMG_Extra\fTMGPrintingAnimation.pas',
     326  uTMGOptions in 'uTMGOptions.pas',
     327  fPtLabelPrint in 'TMG_Extra\fPtLabelPrint.pas' {frmPtLabelPrint},
     328  uEvaluate in 'uEvaluate.pas';
    326329
    327330{$R *.TLB}
     
    337340    Application.Initialize;
    338341    frmSplash := nil;
    339     if ParamSearch('SPLASH') <> 'OFF' then
    340     begin
     342    if ParamSearch('SPLASH') <> 'OFF' then begin
    341343      frmSplash := TfrmSplash.Create(Application);  // show splash screen
    342344      frmSplash.Show;                               //         "
     
    348350    Application.CreateForm(TdmodShared, dmodShared);
    349351  Application.CreateForm(TfrmFrame, frmFrame);
    350   if frmframe.TMGAbort = False then begin   //kt 3/25/09
     352  //kt <--- frmImages etc created here
     353    Application.CreateForm(TfrmPtLabelPrint, frmPtLabelPrint);
     354    if frmframe.TMGAbort = False then begin   //kt 3/25/09
    351355      Application.CreateForm(TfrmSearchStop, frmSearchStop);
    352       Application.CreateForm(TfrmImages, frmImages);
    353356      Application.CreateForm(TUploadForm, UploadForm);
    354       Application.CreateForm(TUploadProgressForm, UploadProgressForm);
     357      Application.CreateForm(TImageTransferForm, ImageTransferForm);
    355358      Application.CreateForm(TfrmODAllergy, frmODAllergy);
    356359      Application.CreateForm(TfrmDeviceSelect, frmDeviceSelect);
     
    364367      Application.CreateForm(TEditTextForm, EditTextForm);
    365368      Application.CreateForm(TfrmTMGPrinting,frmTMGPrinting);
    366       //kt Application.CreateForm(TfrmWebTab, frmWebTab);
    367369      frmSplash.Free;                               // close & free splash screen
    368370      Application.Run;
Note: See TracChangeset for help on using the changeset viewer.