home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
delphi
/
dnarrays.lzh
/
ARRTEST5.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1995-04-30
|
620b
|
35 lines
{ Form Template - Source and Destination Choices Lists }
unit Arrtest5;
interface
uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
StdCtrls;
type
TCopyDlg = class(TForm)
OKBtn: TBitBtn;
CancelBtn: TBitBtn;
LstSource: TListBox;
LstTarget: TListBox;
SrcLabel: TLabel;
DstLabel: TLabel;
Label1: TLabel;
EdtFromIndex: TEdit;
Label2: TLabel;
EdtToIndex: TEdit;
Label3: TLabel;
EdtNumItems: TEdit;
private
{ Private declarations }
public
{ Public declarations }
end;
implementation
{$R *.DFM}
end.