-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathformoptions.pas
More file actions
47 lines (34 loc) · 853 Bytes
/
formoptions.pas
File metadata and controls
47 lines (34 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
unit FormOptions;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls,
Buttons, ExtCtrls, IniPropStorage;
type
{ TfrmOptions }
TfrmOptions = class(TForm)
BitBtn1: TBitBtn;
BitBtn2: TBitBtn;
cbReloadRegTime: TComboBox;
cbReadUseFunc05: TCheckBox;
edUnitID: TLabeledEdit;
IniPropStorage2: TIniPropStorage;
lbReloadRegTime: TLabel;
chBaseRegisterIs: TRadioGroup;
procedure cbReadUseFunc05Change(Sender: TObject);
private
{ private declarations }
public
{ public declarations }
end;
var
frmOptions: TfrmOptions;
implementation
{$R *.lfm}
{ TfrmOptions }
procedure TfrmOptions.cbReadUseFunc05Change(Sender: TObject);
begin
ShowMessage('Not support =(');
//ToDo: WIP!
end;
end.