| Last change
 on this file since 1784 was             453, checked in by Kevin Toppenberg, 17 years ago | 
        
          | 
Initial upload of TMG-CPRS 1.0.26.69
 | 
        
          | File size:
            813 bytes | 
      
      
| Rev | Line |  | 
|---|
| [453] | 1 | //kt -- Modified with SourceScanner on 7/24/2007 | 
|---|
|  | 2 | unit fNoteSTStop; | 
|---|
|  | 3 |  | 
|---|
|  | 4 | interface | 
|---|
|  | 5 |  | 
|---|
|  | 6 | uses | 
|---|
|  | 7 | Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, | 
|---|
|  | 8 | Dialogs, StdCtrls, fAutoSz, DKLang; | 
|---|
|  | 9 |  | 
|---|
|  | 10 | type | 
|---|
|  | 11 | TfrmSearchStop = class(TfrmAutoSz) | 
|---|
|  | 12 | btnSearchStop: TButton; | 
|---|
|  | 13 | lblSearchStatus: TStaticText; | 
|---|
|  | 14 | procedure btnSearchStopClick(Sender: TObject); | 
|---|
|  | 15 | procedure FormShow(Sender: TObject); | 
|---|
|  | 16 | private | 
|---|
|  | 17 | { Private declarations } | 
|---|
|  | 18 | public | 
|---|
|  | 19 | { Public declarations } | 
|---|
|  | 20 | end; | 
|---|
|  | 21 |  | 
|---|
|  | 22 | var | 
|---|
|  | 23 | frmSearchStop: TfrmSearchStop; | 
|---|
|  | 24 |  | 
|---|
|  | 25 | implementation | 
|---|
|  | 26 |  | 
|---|
|  | 27 | {$R *.dfm} | 
|---|
|  | 28 | uses fNotes, ORFn; | 
|---|
|  | 29 |  | 
|---|
|  | 30 | procedure TfrmSearchStop.btnSearchStopClick(Sender: TObject); | 
|---|
|  | 31 | begin | 
|---|
|  | 32 | SearchTextStopFlag := True; | 
|---|
|  | 33 | end; | 
|---|
|  | 34 |  | 
|---|
|  | 35 | procedure TfrmSearchStop.FormShow(Sender: TObject); | 
|---|
|  | 36 | begin | 
|---|
|  | 37 | ResizeFormToFont(frmSearchStop); | 
|---|
|  | 38 | end; | 
|---|
|  | 39 |  | 
|---|
|  | 40 | end. | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.