by Cgallegoa » Tue Feb 23, 2010 12:54 pm
Maestro, ya descubrí qué pasa:
Esta líneas
"//-------------------------------------------------------------//"
no permiten que se procese adecuandamente. Si se quitan queda bien.
====== Ejemplo ======
SAMPLES\TESTREG.PRG
// Manejando registros desde FiveWin
<code clipper>
#define HKEY_CLASSES_ROOT 2147483648
#define HKEY_CURRENT_USER 2147483649
#define HKEY_LOCAL_MACHINE 2147483650
#define HKEY_USERS 2147483651
#define HKEY_PERFORMANCE_DATA 2147483652
#define HKEY_CURRENT_CONFIG 2147483653
#define HKEY_DYN_DATA 2147483654
//-------------------------------------------------------------//
function Main()
local nHandle, cValue
if RegOpenKey( HKEY_LOCAL_MACHINE,;
"SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths",;
@nHandle ) == 0
RegQueryValue( nHandle, "IEXPLORE.EXE", @cValue )
MsgInfo( cValue )
RegCloseKey( nHandle )
endif
return nil
//-------------------------------------------------------------//
</code>
====== Código fuente ======
pero no pone el formato correcto. Qué me falta ?
Saludos,
Carlos Gallego
Saludos,
Carlos Gallego
*** FWH-24.07, xHarbour 1.3.1 Build 20240624, Borland C++7.70, PellesC ***