3
3368aa
Unregistered / Unconfirmed
GUEST, unregistred user!
我想得到一INI文件中某小节的全部内容,不包括关键字
请看
procedure TForm1.FormCreate(Sender: TObject);
var
i,j:integer;
s:string;
begin
myini:=tinifile.Create('h:/ok.ini');
try
myini.ReadSectionValues('gw',combobox1.items);
finally
myini.Destroy;
end;
for i:=0 to combobox1.items.count-1 do
begin
s:=combobox1.items.strings;
j:=pos('=',s);
delete(s,0,j);
end;
end;
end.
但结果没有改变,为什么?
急!!!
请看
procedure TForm1.FormCreate(Sender: TObject);
var
i,j:integer;
s:string;
begin
myini:=tinifile.Create('h:/ok.ini');
try
myini.ReadSectionValues('gw',combobox1.items);
finally
myini.Destroy;
end;
for i:=0 to combobox1.items.count-1 do
begin
s:=combobox1.items.strings;
j:=pos('=',s);
delete(s,0,j);
end;
end;
end.
但结果没有改变,为什么?
急!!!