NewDial.pas
上传用户:fh681027
上传日期:2022-07-23
资源大小:1959k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. unit NewDial;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  5.   StdCtrls, Buttons;
  6. type
  7.   TFormItem = class(TForm)
  8.     EditReference: TEdit;
  9.     EditAuthor: TEdit;
  10.     EditCountry: TEdit;
  11.     ComboType: TComboBox;
  12.     Label1: TLabel;
  13.     Label2: TLabel;
  14.     Label3: TLabel;
  15.     Label4: TLabel;
  16.     BitBtn1: TBitBtn;
  17.     BitBtn2: TBitBtn;
  18.   private
  19.     { Private declarations }
  20.   public
  21.     procedure Clear;
  22.   end;
  23. var
  24.   FormItem: TFormItem;
  25. implementation
  26. {$R *.DFM}
  27. { TFormItem }
  28. procedure TFormItem.Clear;
  29. var
  30.   I: Integer;
  31. begin
  32.   // clear each edit box
  33.   for I := 0 to ControlCount - 1 do
  34.     if Controls [I] is TEdit then
  35.       TEdit (Controls[I]).Text := '';
  36. end;
  37. end.
  38.