-
Notifications
You must be signed in to change notification settings - Fork 2
/
DefClnSettingsUnit.pas
executable file
·70 lines (58 loc) · 1.61 KB
/
DefClnSettingsUnit.pas
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
unit DefClnSettingsUnit;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, IniFiles, TntStdCtrls, TntForms;
type
TDefClnSettingsForm = class(TTntForm)
Label1: TTntLabel;
Edit1: TTntEdit;
Button1: TTntButton;
Button2: TTntButton;
procedure FormActivate(Sender: TObject);
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
DefClnSettingsForm: TDefClnSettingsForm;
implementation
uses MainUnit, common, WideIniClass;
{$R *.dfm}
procedure TDefClnSettingsForm.FormActivate(Sender: TObject);
var
myinifname,path : string;
myIniFile : TWideIniFile;
begin
path:=extractfilepath(paramstr(0));
myinifname := path+'pleiades.ini';
MyIniFile := TWideIniFile.Create(myinifname);
with MyIniFile do
begin
FastRecordCreator.defcln :=ReadWideString(FastRecordCreator.currentdatabase,'DefCln', '');
end;
MyIniFile.Free;
Edit1.Text := FastRecordCreator.defcln;
end;
procedure TDefClnSettingsForm.Button1Click(Sender: TObject);
var myinifname,path : string;
myIniFile : TWideIniFile;
begin
path:=extractfilepath(paramstr(0));
myinifname := path+'pleiades.ini';
MyIniFile := TWideIniFile.Create(myinifname);
with MyIniFile do
begin
WriteWideString(FastRecordCreator.currentdatabase,'DefCln', Edit1.Text);
end;
FastRecordCreator.defcln :=Edit1.Text;
MyIniFile.Free;
end;
procedure TDefClnSettingsForm.Button2Click(Sender: TObject);
begin
//
end;
end.