Search found 22 matches: regqueryvalue

Return to advanced search

Re: How to call Events from OLE/COM objects

hi, sorry ... have "forgot" this Thread have SET set bcdir=c:\bcc7set FWDIR=c:\fwhset fwh=c:\fwhset GT=gtguiset HBDIR=c:\harbourset hdir=c:\harbourset hdirl=c:\harbour\lib\win\bcc and Call build.bat olebrow and got Turbo Incremental Link 6.70 Copyright (c) 1997-2014 Embarcadero Technologie...
by Jimmy
Sun May 15, 2022 12:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to call Events from OLE/COM objects
Replies: 14
Views: 967

Re: using CALLDLL

This is a sample for REGQUERYVALUE: DLL32 FUNCTION REGQUERYVALUE( hKey AS LONG, cValueName AS LPSTR, nReserved AS LONG, @nType AS PTR, @cData AS LPSTR, @nSize AS PTR ) AS LONG;      PASCAL FROM "RegQueryValueExA" ...
by Enrico Maria Giordano
Thu Sep 15, 2016 9:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: using CALLDLL
Replies: 3
Views: 571

Re: Urgent Problem regedit

... @hKey ) // RegDeleteKey( hKey, "CdCache" ) RegSetValue(hKey,"CdCache","0") MsgInfo( RegQueryValue( hKey,"CdCache" ) ) RegCloseKey( hKey ) return nil the function RegSetValue(hKey,"CdCache","0") NOT RUN ...
by Silvio.Falconi
Fri Jan 23, 2015 11:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Urgent Problem regedit
Replies: 5
Views: 1111

Re: Modificar clave del Regedit

Roberto,

Has probado a leer el valor una vez modificado ?

RegOpenKey(HKEY_CURRENT_USER,"Software\Microsoft\Notepad",@hKey)
RegSetValue(hKey,"lfFaceName","Courier New")

MsgInfo( RegQueryValue( hKey,"lfFaceName" ) )

RegCloseKey(hKey)
by Antonio Linares
Fri Jan 09, 2015 10:04 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Modificar clave del Regedit
Replies: 6
Views: 1098

Re: Tablet and form style for Windows 8 (desktop ver.)

Hello Antonio,
thank you. I have admin rights.
RegEnumValue reports all the values fine but
RegQueryValue( hKey, "ScrollHeight" , @uValue )
returns "Ff".
Best regards,
Otto
by Otto
Fri Mar 08, 2013 12:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tablet and form style for Windows 8 (desktop ver.)
Replies: 80
Views: 24265

Re: Tablet and form style for Windows 8 (desktop ver.)

Hello Antonio, I tried to get/set the values with a FW program. But RegSetValue( hKey, "ScrollHeightn" ,-500 ) RegQueryValue( hKey, "ScrollHeight" , @uValue ) in my case does not work. RegEnumValue is working fine. Do you know a solution. Best regards, Otto #define ...
by Otto
Thu Mar 07, 2013 8:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tablet and form style for Windows 8 (desktop ver.)
Replies: 80
Views: 24265

Re: registry value

... 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 ...
by tsales
Mon May 31, 2010 6:30 am
 
Forum: FiveWin for Pocket PC
Topic: registry value
Replies: 1
Views: 590

Re: Se necesita ayuda en el wiki !

... 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 //-------------------------------------------------------------// ...
by Cgallegoa
Tue Feb 23, 2010 12:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Se necesita ayuda en el wiki !
Replies: 12
Views: 5502

Re: Se necesita ayuda en el wiki !

... ReadVar() RealizePalette() Rectangle() RectDotted() Recv() RegCloseKey() RegCreateKey() RegDeleteKey() RegEnumKey() RegisterClass() RegOpenKey() RegQueryValue() RegSetValue() ReleaseCapture() ReleaseDC() RemoveMenu() RemoveProp() Report() ResetDC() ResourceFree() RestoreDC() RestProc() RLNew() ...
by Cgallegoa
Tue Feb 23, 2010 3:32 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Se necesita ayuda en el wiki !
Replies: 12
Views: 5502

Registry function - something changed ?

... cValue:="" if RegOpenKey( HKEY_LOCAL_MACHINE,"SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths", @nHandle ) == 0 RegQueryValue( nHandle, cFile, @cValue ) RegCloseKey( nHandle ) msginfo(cValue) cValue:=ansitooem(cValue) cValue:=alltrim(cValue) cValue:=substr(cvalue,1,len(cvalue)-1) ...
by Marco Turco
Wed Nov 04, 2009 11:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Registry function - something changed ?
Replies: 7
Views: 1136

Full text search in code

The search function exclude the code tags!

For me it is a disadvantage.

Example: Searching 'RegQueryValue'. This topic viewtopic.php?f=3&t=13879 isn't in the matches!
by frose
Tue May 12, 2009 7:22 am
 
Forum: Off Topic / Otros temas
Topic: Full text search in code
Replies: 0
Views: 317

Re: Read contacts Pocket outlook wm5

Como has inspeccionado ese valor del registro ? Con RegQueryValue() ? Con el Resco Registry . Prueba este codigo: #include "fwce.ch"function Main()   MsgInfo( ValType( CreateObject( "4E130E40-7DBE-11D2-8F23-0000F87A4335" ...
by JmGarcia
Mon Mar 16, 2009 8:43 pm
 
Forum: FiveWin para Pocket PC
Topic: Read contacts Pocket outlook wm5
Replies: 34
Views: 6989

Re: Read contacts Pocket outlook wm5

... hDll );   }      hb_retnl( lReturn );}         #pragma ENDDUMP  Como has inspeccionado ese valor del registro ? Con RegQueryValue() ?
by Antonio Linares
Mon Mar 16, 2009 2:12 am
 
Forum: FiveWin para Pocket PC
Topic: Read contacts Pocket outlook wm5
Replies: 34
Views: 6989

Re: Run Another Program

... worked out how to get the path if RegOpenKey( HKEY_LOCAL_MACHINE,"SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths", @nHandle ) == 0 RegQueryValue( nHandle, "ACRORD32.EXE", @cFilePath ) RegCloseKey( nHandle ) endif if ! empty(cFilePath) if MsgYesNo('Save ' + cFilePath + ...
by Colin Haig
Sat Mar 14, 2009 12:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Run Another Program
Replies: 12
Views: 2577

Calls in Vista

... cVar1, cVar2 // Find the registry values for an address book cExt:=if(left(cExt,1)!=".","."+cExt,cExt) RegOpenkey(HKEY_CLASSES_ROOT,"",@nHandler) RegQueryValue(nHandler,cExt,@cVar1) RegCloseKey(nHandler) RegOpenKey(HKEY_CLASSES_ROOT,cVar1,@nHandler) RegQueryValue(nHandler,"DefaultIcon",@cVar2) ...
by TimStone
Fri Oct 19, 2007 4:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Calls in Vista
Replies: 0
Views: 433
Next

Return to advanced search