Page 1 of 1

registry value

Posted: Sun May 16, 2010 4:22 pm
by Otto
Can someone please post an example how to write and read a registry value.
Thank in advance
Otto

Re: registry value

Posted: Mon May 31, 2010 6:30 am
by tsales
Otto

function ReadRegistry()

LOCAL nHandle
LOCAL cValue
LOCAL dFecUltActu
if RegOpenKey( HKEY_CURRENT_USER, "SOFTWARE\MySoft", @nHandle ) == 0
dFecUltActu := cToD( RegQueryValue( nHandle, "F.Ul.Actualizacion" , @cValue ))
RegCloseKey( nHandle )
endif
Return NIL

function WriteRegistry()
LOCAL nHandle
LOCAL cDateUltActu := dToC( DATE() )

if RegOpenKey( HKEY_CURRENT_USER, "SOFTWARE\MySoft", @nHandle ) != 0
RegCreateKey( HKEY_CURRENT_USER, "SOFTWARE\MySoft", @nHandle ) // Creo el Grupo.
if RegOpenKey( HKEY_CURRENT_USER, "SOFTWARE\MySoft", @nHandle ) == 0 // Si existe.
RegSetValue( nHandle, "F.Ul.Actualizacion" ,cDateUltActu )
Endif
RegCloseKey( nHandle )
endif
Return NIL