FoxPro/Visual FoxPro - Valores en Regedit

 
Vista:

Valores en Regedit

Publicado por Luis Alberto (46 intervenciones) el 04/05/2007 19:26:02
Foristas, alguien sabe como ingresar valores en el regedit, también como leerlos?
Gracias
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder
sin imagen de perfil

RE:Valores en Regedit

Publicado por Ernesto Hernandez (4623 intervenciones) el 04/05/2007 19:38:53
DECLARE Integer RegOpenKeyEx IN Win32API ;
Integer nKey, String @cSubKey, Integer nReserved,;
Integer nAccessMask, Integer @nResult

DECLARE Integer RegQueryValueEx IN Win32API ;
Integer nKey, String cValueName, Integer nReserved,;
Integer @nType, String @cBuffer, Integer @nBufferSize

DECLARE Integer RegCloseKey IN Win32API ; Integer nKey
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar

RE:Valores en Regedit

Publicado por Plinio (7841 intervenciones) el 04/05/2007 23:13:48
Chequea este material
http://www.sopaul.com.ar/cursos/vfoxpro/vfp_api6.htm
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar

RE:Valores en Regedit

Publicado por Luis Alberto (46 intervenciones) el 05/05/2007 16:53:28
Gracias a Ernesto y a Plinio
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar