Search
 
SCRIPT & CODE EXAMPLE
 

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;
Comment

firemonkey android ini file read

function LoadSettingString(Section, Name, Value: string): string;
var
  ini: TIniFile;
begin
  ini := TIniFile.Create(System.IOUtils.TPath.GetDocumentsPath + System.SysUtils.PathDelim + 'config.ini');
  try
    Result := ini.ReadString(Section, Name, Value);
  finally
    ini.Free;
  end;
end;
Comment

PREVIOUS NEXT
Code Example
Java :: java coding standards for constants 
Java :: while (rem != 0); java 
Java :: java scanner use all symbols as delimiter 
Java :: Java Create an OutputStreamWriter 
Java :: what are construtcor java 
Java :: android studio analyze apk 
Java :: change upper bar colour android studio 
Java :: leftView 
Java :: confirm dialog in java 
Java :: <selector xmlns:android="http://schemas.android.com/apk/res/android<item android;drawable="@drawable/bluebtn" android: state_enabled="false"/ 
Java :: Java Program to Print Spiral Pattern of Numbers 
Java :: accessdeniedexception amplify init 
Java :: converting temperature from fahrenheit to celsius 
Java :: Jax-RS POST annotation 
Java :: android studio enum usage 
Java :: Kotlin Toast : error-none-of-the-following-functions-can-be-called-with-the-arguments-supplied 
Java :: int a[ ]={4,8,3,2}; a[0] = 23; a[3]= a[1]; a[2]=12; for(int i=0; i<a.length; i++) System.out.println(a[i]); 
Java :: create new instance of class java 
Java :: compare list from db and list from request 
Java :: how to add a command to a button 
Java :: set class return type by jenric in java 
Java :: does not have a NavController set on 21312310 kotlin 
Java :: pyqt tree view 
Java :: how to show the hex detail of a file in java 
Java :: merge sort algorithm in java short answer 
Java :: public class HelloWorld { public static void main( String[] argv ) { int a=4%2*3-1/0; System.out.println(a); } } 
Java :: jsonpath xpath java 
Java :: How to Access Elements of an Array in Java? 
Java :: java casting method 
Java :: setBackgrounfTint color to relative layout from java file 
ADD CONTENT
Topic
Content
Source link
Name
3+1 =