Changeset 4 for trunk


Ignore:
Timestamp:
Nov 27, 2008, 12:18:32 PM (15 years ago)
Author:
george
Message:
  • Upraveno: Verze 1.3.
Location:
trunk
Files:
16 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/KonfiguratorZdechovNET.dpr

    r3 r4  
    33uses
    44  Forms,
    5   MainWindow in 'MainWindow.pas' {MainForm},
     5  UMainForm in 'UMainForm.pas' {MainForm},
    66  DosCommand in 'DosCommand.pas',
    77  UNetworkTest in 'UNetworkTest.pas' {NetworkTest},
     
    1111  UMapFile in 'UMapFile.pas',
    1212  UDialingLog in 'UDialingLog.pas' {DialingLog},
    13   UTextFileStream in 'UTextFileStream.pas';
     13  UTextFileStream in 'UTextFileStream.pas',
     14  UServiceControl in 'ServiceControl\UServiceControl.pas';
    1415
    1516{$R *.res}
  • trunk/UAboutWindow.pas

    r1 r4  
    2626implementation
    2727
    28 uses MainWindow;
     28uses UMainForm;
    2929
    3030{$R *.dfm}
  • trunk/UDialingLog.dfm

    r3 r4  
    1212  Font.Style = []
    1313  OldCreateOrder = False
     14  OnShow = FormShow
    1415  DesignSize = (
    1516    402
  • trunk/UDialingLog.pas

    r2 r4  
    1010  TDialingLog = class(TForm)
    1111    Memo1: TMemo;
     12    procedure FormShow(Sender: TObject);
    1213  private
    1314    { Private declarations }
     
    1516    { Public declarations }
    1617  end;
     18
    1719
    1820var
     
    2325{$R *.dfm}
    2426
     27uses
     28  UTextFileStream, UMainForm;
     29
     30procedure TDialingLog.FormShow(Sender: TObject);
     31var
     32  TextFile: TTextFileStream;
     33begin
     34  try
     35    TextFile := TTextFileStream.Create(MainForm.LogFileName, fmOpenRead);
     36
     37  finally
     38    TextFile.Free;
     39  end;
     40
     41end;
     42
    2543end.
  • trunk/UNetworkTest.pas

    r3 r4  
    5959implementation
    6060
    61 uses MainWindow, Math;
     61uses  Math, UMainForm;
    6262
    6363{$R *.dfm}
Note: See TracChangeset for help on using the changeset viewer.