Tema: MainMenu
Ver Mensaje Individual
  #3  
Antiguo 11-04-2007
Avatar de Elias_02
Elias_02 Elias_02 is offline
Miembro
 
Registrado: abr 2006
Posts: 15
Reputación: 0
Elias_02 Va por buen camino
Smile Gracias

hola, muchas gracias...


hice lo siguiente

Código Delphi [-]
uses IniFiles;

var
  ini: TIniFile;

FROMCREATE

ini := TIniFile.Create('C:\archivo.ini');
   try
     {...}
      frmcompiladores.Ajustedelnea1.Checked := ini.readbool('MENU','ajusteln',true);
      frmcompiladores.ResaltarCodigoC1.Checked := ini.readBool('MENU','resaltac',true);{con esto leo del archivo ini}
   finally
     ini.Free;
   end;


EN LOS EVENTOS CLIC

ini.WriteBool('MENU','resaltac',false);//con esto escribo en el archivo

por si alguien le sirve gracias....
__________________
Cita:
"There are only 10 types of people in the world: Those who understand binary, and those who don't..."
Responder Con Cita