ListD.pas
Upload User: fh681027
Upload Date: 2022-07-23
Package Size: 1959k
Code Size: 0k
Category:

Delphi VCL

Development Platform:

Delphi

  1. unit ListD;
  2. interface
  3. uses Windows, Classes, Graphics, Forms,
  4.   Controls, Buttons, StdCtrls;
  5. type
  6.   TListDial = class(TForm)
  7.     ListBox1: TListBox;
  8.     BitBtn1: TBitBtn;
  9.     BitBtn2: TBitBtn;
  10.   private
  11.     { Private declarations }
  12.   public
  13.     { Public declarations }
  14.   end;
  15. var
  16.   ListDial: TListDial;
  17. implementation
  18. {$R *.DFM}
  19. end.