Name : cIni.cls

Var :
	- cFileIni : the name of the IniFile

Property :
	- ReadIni : Read the value of an item in a section.
	- Inifile : return the IniFileName.

Function : 
	- VarString : erase bad caractere. type : String.
	- ExistFile : test existance of IniFile. type : boolean.

Procedure :
	- WriteIni : write the value of an Item in a section.


Ex : 

1- Write

Dim INI as new cIni 

call INI.WriteIni("PSEUDO","QUIRK","David") -> Create (if not exist) an IniFile like Nameofproject.INI 	


'* this is make a file like this

'* [PSEUDO]    <-|
'* QUIRK=David   |
		 |
		 |
		 |	
		 |
2- Read the file_|

Dim Ini as new cIni
Dim value as string

call INI.ReadIni("PSEUDO","QUIRK",value)

'* the value is David

