Ver Mensaje Individual
  #5  
Antiguo 12-02-2023
REHome REHome is offline
Miembro
 
Registrado: jul 2003
Ubicación: España
Posts: 454
Reputación: 21
REHome Va por buen camino
Precisamente usaba *.ini y me comentaron ya por el 2.000 que es muy lento, intento con .reg y me dice que te relantiza Windows con el tiempo, mejor nunca tocar el editor de registro, al final me enseñaron XML y mal hecho, a lo antigua, ahora se hace con clases. Hoy en día por su versatilidad el json.

¿Qué entiende más el humano?
XML
Código:
    <?xml version="1.0" encoding="utf-8"?>
    <MiInfo>
         <TextBox>Hola.</TextBox>
         <CheckBox>True</CheckBox>
         <radioButton1_Luz_ON>False</radioButton1_Luz_ON>
         <radioButton2_Luz_OFF>True</radioButton2_Luz_OFF>
    </MiInfo>
Json
Código:
    {
         "MiInfo": 
                 {
                     "TextBox": "Hola.",
                     "CheckBox": "True",
                     "radioButton1_Luz_ON": "False",
                     "radioButton2_Luz_OFF": "True"
                 }
    }
Saludos.
__________________
http://electronica-pic.blogspot.com....n-arduino.html Manuales de electrónica general, PIC y Arduino.
Responder Con Cita