get_ini_params method |
Applies to
TForm2
Declaration
function get_ini_params(sec: string; chap: string): String;Implementation
function TForm2.get_ini_params(sec : String; chap : String):String; var ini1:TIniFile; begin ini1:=TINiFile.Create(root+'wikibrowse.ini'); Result:=ini1.ReadString(sec,chap,''); ini1.free; End; |
|