ini配置文件怎么写?(100分)

  • 主题发起人 主题发起人 oceanwbj
  • 开始时间 开始时间
O

oceanwbj

Unregistered / Unconfirmed
GUEST, unregistred user!
小弟用move to line to line 语句和text out做了一个表格,现在已经往里面添加了数据,现在的问题是怎么样才能使表格里的数据刷新,还有,表格的自适应长宽怎么用ini配置文件调整?这些都我导师要求的,不然我也不会用那个语句画表格,dx们帮帮小弟啊!
 
1. InvalidateRect 刷新文字所在的矩形
2.读ini文件
var
IniFile:= TIniFile;
begin
iniFile:=TIniFile.Create('01.ini');
Left:= iniFile.ReadInteger('Table Position','Left',20);
... ...
iniFile.Free;
end;

写ini文件
var
IniFile:= TIniFile;
begin
iniFile:=TIniFile.Create('01.ini');
iniFile.WriteInteger('Table Position','Left',Left);
... ...
iniFile.Free;
end;
 
是啊,是怎么配置的,谁知道回答一下?
 
TiniFile类不是一个Delphi的部件,因此不能在Delphi的VCL模板中找到,它在Delphi 系统中的inifiles单元中定义,因此要使用TiniFile类,必须在使用该类的单元文件中用Uses inifiles指令明确地说明。
TiniFile类中定义了许多成员函数,这里介绍几个使用频率较高的成员函数:
⑴ Create()
函数定义为: constructor Create(const FileName: string);
该函数建立TiniFile类的对象。参数FileName是要读写的初始化文件名。
若读写的文件在Windows的目录里(如system.ini文件),则可以直接写文件名而不必指定路径,否则就必须指定路径(如d:/ucdos/rdfnt.ini)。
如按以下规则在规定的目录中存在该文件,则打开该初始化文件;否则在规定的目录里创建该初始化文件。
⑵ ReadSections()
过程定义为: procedure ReadSections(Strings: TStrings);
该过程将从所建立的TiniFile类的对象(即与之关联的初始化文件)中读取所有的节点名(即用[]括号括起的那部分,如rdfnt.ini文件中的[True Type fonts list])存入字符串列表中。参数Strings即为字符串列表的变量名。
⑶ ReadSectionValues()
过程定义为: procedure ReadSectionValues(const Section: string;
Strings: TStrings);
该过程将参数Section的值所对应的节点(如rdfnt.ini文件中的[True Type fonts list])中的各个关键字(如ARIALBI.TTF)及其所含的值(如ARIALBI.TTF关键字值为67)读入参数Strings指明的字符串列表中。
⑷ ReadSection()
过程定义为: procedure ReadSection(const Section: string;
Strings: TStrings);
该过程将参数Section的值所对应的节点中的各个关键字读入参数Strings指明的字符串列表中。与ReadSectionValues()不同的是它没有读取各个关键字的对应值。
⑸ ReadString()
函数定义为: function ReadString(const Section, Ident, Default: string): string;
该函数返回以参数Section的值为节点名、参数Ident的值为关键字名所对应的关键字值(如[True Type fonts list]节中ARIALBI.TTF关键字的值为67)。当指定的节点或节内的关键字不存在时,则函数返回参数Default的缺省值。返回的值是一个字符串型数据。
当指定节点中关键字值的数据类型不是字符串时,则可用ReadInteger()成员函数读取一个整型值,用ReadBool()成员函数读取一个布尔值。
⑹ WriteString()
过程定义为: procedure WriteString(const Section, Ident, Value: string);
该过程将参数Section的值为节点名、参数Ident的值为关键字名的关键字值设置为参数Value的值。该过程设置的是字符串型数据。
当指定节点和关键字均存在时,则用Value的值替代原值;如指定节点不存在,则在关联的初始化文件中自动增加一个节点,该节点的值为参数Section的值,并在该节点下自动增加一个关键字,关键字名为参数Ident的值,该关键字对应的值为参数Value的值;若节点存在,但关键字不存在,则在该节点下自动增加一个关键字,关键字名为参数Ident的值,该关键字对应的值为参数Value的值。
若要设置整型值,可调用WriteInteger()成员函数;用WriteBool()成员函数设置布尔值。
知道了以上函数的作用,要建立或读写一个初始化文件就不难了。下面以一个实际例子说明初始化文件的读取方法,步骤如下:

⒈ 在需要读写初始化文件的窗体(Form)上放置名为SectionComboBox、IdentComboBox的两个组合式列表框,其中SectionComboBox存放节点名,IdentComboBox存放所选择节点的关键字名。一个名为IdentValueEdit的输入框,存放对应关键字的值。名为CmdChang的修改命令钮可以用来修改关键字的值,修改后用名为CmdSave的存储命令钮将修改后的关键字的值存入关联的初始化文件。窗体对应的单元名设为IniUnit,窗体名设为IniForm,窗体布局如下图一所示:


⒉ 在IniUnit单元的interface部分用uses inifiles;说明要引用的TiniFile类所定义的单元名。并在变量说明部分定义TiniFile类的对象,如
var IniFile: TiniFile;
⒊ 建立窗体的OnCreate事件过程。使用TIniFile类的Create成员函数创建TIniFile对象,用该对象读写d:/ucdos目录中的rdfnt.ini初始化文件,并将该初始化文件中的所有节点通过ReadSections() 成员函数读入SectionComboBox组合式列表框中,用ReadSection()成员函数将第一个节点中的所有关键字读入IdentComboBox 组合式列表框,用ReadString()成员函数将第一个关键字的值送入IdentValueEdit输入框。
⒋ 建立SectionComboBox组合式列表框的OnChange事件过程。当该选择列表框中的不同项目(即不同的节点名)时,用ReadSection()成员函数将选节点中的所有关键字读入IdentComboBox 组合式列表框,并用ReadString()成员函数将第一个关键字的值送入IdentValueEdit输入框。
⒌ 建立IdentComboBox组合式列表框的OnChange事件过程。当该选择列表框中的不同项目(即不同的关键字名)时,用ReadString()成员函数将该关键字的值送入IdentValueEdit输入框。
⒍ 建立命令钮CmdChang的OnClick事件过程。使IdentValueEdit输入框中的内容可以修改(不按该命令钮,IdentValueEdit输入框是不能修改的),并设置命令钮CmdSave有效,可以将修改后的关键字值存入关联的初始化文件中。
⒎ 建立命令钮CmdSave的OnClick事件过程。如果关键字值已改变,则调用WriteString()成员函数将修改后的关键字的值存盘。
⒏ 建立窗体的OnDestroy事件过程。当窗体失效时,将建立的TIniFile对象释放,以释放该对象所战用的系统资源。
至此,运行该工程,初始化文件的读写已能顺利进行。当然还可以使用EraseSection()成员函数删除指定的节,也可用DeleteKey()成员函数删除指定的关键字,因篇幅有限,这里就不详细介绍了,有兴趣的可参考Delphi的使用帮助。
下面是该单元的源程序代码:
unit IniUnit;

interface

uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, inifiles;

type
TIniForm = class(TForm)
SectionComboBox: TComboBox;
Label1: TLabel;
CmdSave: TButton;
CmdChang: TButton;
IdentComboBox: TComboBox;
IdentValueEdit: TEdit;
Label2: TLabel;
Label3: TLabel;
procedure FormCreate(Sender: TObject);
procedure SectionComboBoxChange(Sender: TObject);
procedure FormDestroy(Sender: TObject);
procedure CmdChangClick(Sender: TObject);
procedure CmdSaveClick(Sender: TObject);
procedure IdentComboBoxChange(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;


var
IniForm: TIniForm;
{ Delphi中通过TIniFile类读写Windows的初始化文件 }
IniFile: TIniFile;

implementation

{$R *.DFM}

procedure TIniForm.FormCreate(Sender: TObject);
begin

{ 使用TIniFile类的Create成员函数建立TIniFile对
象,该对象用来读写d:/ucdos目录中的rdfnt.ini文件,
如果读写的文件在Windows的目录里(如system.ini),
则可以直接写文件名而不必指定路径 }
IniFile:=TIniFile.Create('d:/ucdos/rdfnt.ini');
{ 将TIniFile对象关联的初始化文件system.ini中的所
有节(即用[]括号括起的那部分)的节名送入下拉式组
合列表框SectionComboBox中 }
SectionComboBox.Clear;
IniFile.ReadSections(SectionComboBox.Items);
{ 选择system.ini文件的第一个节名 }
SectionComboBox.ItemIndex:=0;
SectionComboBoxChange(Sender);
CmdSave.Enabled:=False;
end;


{ 将组合列表框IniComboBox中所选择节中对应的各个
变量及对应的值送入多行文本编辑器IniMemo中 }
procedure TIniForm.SectionComboBoxChange(Sender: TObject);
begin

IdentComboBox.Clear;
IniFile.ReadSection(SectionComboBox.Text,
IdentComboBox.Items);
IdentComboBox.ItemIndex:=0;
IdentComboBoxChange(Sender);
end;


procedure TIniForm.IdentComboBoxChange(Sender: TObject);
begin

IdentValueEdit.Enabled:=False;
{ 将选择的关键字值读入 }
IdentValueEdit.Text:=
IniFile.ReadString(SectionComboBox.Text,
IdentComboBox.Text,'');
end;


procedure TIniForm.CmdChangClick(Sender: TObject);
begin

CmdSave.Enabled:=True;
IdentValueEdit.Enabled:=True;
IdentValueEdit.SetFocus;
end;


procedure TIniForm.CmdSaveClick(Sender: TObject);
begin

if IdentValueEdit.Modified then
begin

IniFile.WriteString(SectionComboBox.Text,
IdentComboBox.Text,
IdentValueEdit.Text);
end;

IdentValueEdit.Enabled:=False;
CmdSave.Enabled:=False;
end;


procedure TIniForm.FormDestroy(Sender: TObject);
begin

IniFile.Free;
{ 释放创建的对象 }
end;


end.
 
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls,IniFiles, ExtCtrls, Menus;
type
TForm1 = class(TForm)
Image1: TImage;
MainMenu1: TMainMenu;
sdasd1: TMenuItem;
Timer1: TTimer;
N1: TMenuItem;
N2: TMenuItem;
N3: TMenuItem;
N4: TMenuItem;
N5: TMenuItem;
procedure FormCreate(Sender: TObject);
procedure FormResize(Sender: TObject);
procedure N1Click(Sender: TObject);
procedure N3Click(Sender: TObject);
procedure N4Click(Sender: TObject);
procedure N5Click(Sender: TObject);
procedure N2Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form1: TForm1;
myinifile: Tinifile;
n:integer;
ni:integer;
m:integer;
mi:integer;
str:array[1..5]of string;
s:tstrings;
ss:string;
implementation
uses Unit2, Unit4, Unit3, Unit5;
{$R *.dfm}
procedure TForm1.FormCreate(Sender: TObject);
var
i:integer;
begin
if fileexists('./String.ini') then
begin
myinifile:=Tinifile.Create('./String.ini');
n:=myinifile.Readinteger('biaoye','lieshu',5);
m:=myinifile.Readinteger('biaoye','hangshu',8);
ni:=myinifile.Readinteger('biaoye','liekuan',100);
mi:=myinifile.Readinteger('biaoye','hangkuan',20);
image1.Height :=m*mi+10;
image1.Width :=n*ni+10;
s:=TStringlist.create;
myinifile.readsection('biaotou',s);
with image1do
begin
for i:=0 to mdo
begin
//Canvas.MoveTo(0,i*mi);
canvas.LineTo(ni*n,i*mi);
end ;
for i:=0 to ndo
begin
//Canvas.MoveTo(i*ni,0);
canvas.LineTo(i*ni,m*mi);
end ;
for i:=0 to n-1do
begin
ss:=myinifile.Readstring('biaotou',s.strings,'');
//canvas.Font.Size:=16;
//canvas.TextOut(i*ni+5,10,ss) ;
end ;
end;
end ;
end;

procedure TForm1.N1Click(Sender: TObject);
begin
form2.showmodal;
end;

procedure TForm1.N3Click(Sender: TObject);
begin
timer1.Enabled:=true;
end;

procedure TForm1.N4Click(Sender: TObject);
begin
form4.showmodal;
end;

procedure TForm1.N5Click(Sender: TObject);
begin
form1.Close ;
form3.Close ;
end;

procedure TForm1.N2Click(Sender: TObject);
begin
form5.showmodal;
end;
procedure TForm1.FormResize(Sender: TObject);
var
i:integer;
j:integer;
begin
myinifile:=Tinifile.Create('./String.ini');
//n:=myinifile.Readinteger('biaoye','lieshu',5);
//m:=myinifile.Readinteger('biaoye','hangshu',8);
//ni:=myinifile.Readinteger('biaoye','liekuan',100);
//mi:=myinifile.Readinteger('biaoye','hangkuan',20);
image1.Height :=form1.Height -20;
image1.Width:=form1.Width-20;
ni:=image1.Width div 5;
s:=TStringlist.create;
myinifile.readsection('biaotou',s);
Image1.Canvas.FillRect(Image1.Canvas.ClipRect);
with image1do
begin
for i:=0 to mdo
begin
Canvas.MoveTo(0,i*mi);
canvas.LineTo(ni*n,i*mi);
end ;
for i:=0 to ndo
begin
Canvas.MoveTo(i*ni,0);
canvas.LineTo(i*ni,m*mi);
end ;
for i:=0 to n-1do
begin
ss:=s.strings;
ss:=myinifile.Readstring('biaotou',ss,'');
canvas.Font.Size:=16;
canvas.TextOut(i*ni+5,10,ss) ;
end ;
end ;
myinifile.readsection('biao',s);
with image1do
begin
for j:=1 to m-1do
begin
for i:=0 to n-1do
begin
ss:=myinifile.Readstring('biao',s.strings[(j-1)*n+i],'');
canvas.Font.Size:=16;
canvas.TextOut(i*ni+5,j*mi+5,ss);
end;
end ;
end ;
end;
end.
各位dx们,这个表格不能自动适应窗体拉伸,不知道是拿哪里出了问题,帮我看看好吗?
 
要用户自己调整表格的适应长度,可用X、Y轴的偏移量来设置。偏移量初始量可在配置文件中。
在C盘WINDOWS目录下写你的配置文件(文本编写,保存为 ini文件格式),配置文件格式如下:
[你程序中用读取的配置文件]
X=0
Y=0
 
后退
顶部