home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / delphi / dnarrays.lzh / ARRTEST5.PAS < prev    next >
Pascal/Delphi Source File  |  1995-04-30  |  620b  |  35 lines

  1. { Form Template - Source and Destination Choices Lists }
  2. unit Arrtest5;
  3.  
  4. interface
  5.  
  6. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
  7.   StdCtrls;
  8.  
  9. type
  10.   TCopyDlg = class(TForm)
  11.     OKBtn: TBitBtn;
  12.     CancelBtn: TBitBtn;
  13.     LstSource: TListBox;
  14.     LstTarget: TListBox;
  15.     SrcLabel: TLabel;
  16.     DstLabel: TLabel;
  17.     Label1: TLabel;
  18.     EdtFromIndex: TEdit;
  19.     Label2: TLabel;
  20.     EdtToIndex: TEdit;
  21.     Label3: TLabel;
  22.     EdtNumItems: TEdit;
  23.   private
  24.     { Private declarations }
  25.   public
  26.     { Public declarations }
  27.   end;
  28.  
  29. implementation
  30.  
  31. {$R *.DFM}
  32.  
  33.  
  34. end.
  35.