FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Pocket PC registry value
Posts: 6984
Joined: Fri Oct 07, 2005 07:07 PM
registry value
Posted: Sun May 16, 2010 04:22 PM

Can someone please post an example how to write and read a registry value.
Thank in advance
Otto

Posts: 186
Joined: Sat Oct 08, 2005 07:32 AM
Re: registry value
Posted: Mon May 31, 2010 06:30 AM

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

Toni Sales

Continue the discussion