home *** CD-ROM | disk | FTP | other *** search
- unit Hcbtest1;
-
- interface
-
- uses
- SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
- Forms, Dialogs, HstCbo, StdCtrls, ExtCtrls;
-
- type
- TfrmTestHistoryComboBox = class(TForm)
- btRead: TButton;
- btWrite: TButton;
- Bevel1: TBevel;
- Label1: TLabel;
- Label2: TLabel;
- Label3: TLabel;
- HistoryComboBox1: THistoryComboBox;
- procedure btReadClick(Sender: TObject);
- procedure btWriteClick(Sender: TObject);
- private
- { Private-Deklarationen }
- public
- { Public-Deklarationen }
- end;
-
- var
- frmTestHistoryComboBox: TfrmTestHistoryComboBox;
-
- implementation
-
- {$R *.DFM}
-
- procedure TfrmTestHistoryComboBox.btReadClick(Sender: TObject);
- begin
- HistoryComboBox1.ReadIniFile;
- end;
-
- procedure TfrmTestHistoryComboBox.btWriteClick(Sender: TObject);
- begin
- HistoryComboBox1.WriteIniFile;
- end;
-
- end.
-