Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

firemonkey android ini file

procedure SaveSettingString(Section, Name, Value: string);
var
  ini: TIniFile;
begin
  ini := TIniFile.Create(System.IOUtils.TPath.GetDocumentsPath + System.SysUtils.PathDelim + 'config.ini');
  try
    ini.WriteString(Section, Name, Value);
  finally
    ini.Free;
  end;
end;
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #firemonkey #android #ini #file
ADD COMMENT
Topic
Name
2+9 =