Search found 25 matches: regclosekey

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: Ayuda DLL

Antonio, aquí la segunda parte: Error: Unresolved external '_HB_FUN_DRAWTHEMED' referenced from P:\32BITS\FWH\LIB\FIVEHX.LIB|DIALOG Error: Unresolved external '_HB_FUN_GETDLGBASEUNITS' referenced from P:\32BITS\FWH\LIB\FIVEHX.LIB|DIALOG Error: Unresolved external '_HB_FUN_CDLG2CHR' referenced from P...
by ricardog
Thu Aug 31, 2017 2:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda DLL
Replies: 24
Views: 6348

Re: Urgent Problem regedit

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

Urgent Problem regedit

... RegOpenKey( HKEY_LOCAL_MACHINE,; "Software\Microsoft\Office\11.0\Delivery\CdCache", @hKey ) RegDeleteKey( hKey, "CdCache" ) RegCloseKey( hKey ) but it delete the value and I wish insert a "0" (zero) into this value How I can do ? thanks
by Silvio.Falconi
Fri Jan 23, 2015 9:15 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

Modificar clave del Regedit

... RegOpenKey(HKEY_CURRENT_USER,"Software\Microsoft\Notepad",@hKey) RegSetValue(hKey,"lfFaceName","Courier New") RegCloseKey(hKey) Desde ya... mil gracias! Roberto
by TOTOVIOTTI
Thu Jan 08, 2015 8:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Modificar clave del Regedit
Replies: 6
Views: 1098

Re: using FWH 2011.11 and xHarbour.com

when I compile source (xharboure.com) /I changed fivehcm.lib and ficehmx.lib which I received from You/ #include "FiveWin.Ch" #include "xbrowse.ch" //-----------------------// Function Main() Local aData := { ; { 1, 'One', 45, date(), .t. }, ; { 2, 'Two', 2222, date()-1, .f. } , ...
by kajot
Sat Dec 17, 2011 9:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: using FWH 2011.11 and xHarbour.com
Replies: 5
Views: 1578

Re: using FWH 2011.11 and xHarbour.com

yet I got error Type: C >>>xlink.exe -NOEXPOBJ -MAP -FORCE:MULTIPLE -NOIMPLIB -subsystem:windows -UNMANGLE -LIBPATH:"S:\lib" -LIBPATH:"R:\lib" -LIBPATH:"R:\c_lib" -LIBPATH:"R:\c_lib\win" "t.obj" "S:\lib\send32.lib" "S:\lib\mem...
by kajot
Fri Dec 16, 2011 5:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: using FWH 2011.11 and xHarbour.com
Replies: 5
Views: 1578

Re: Test for a .Pdf reader

... "SOFTWARE\Classes\.pdf", @hKey ) WHILE RegEnumValue( hKey, n++, @cName, @uValue ) = 0 aAdd( aKeys, { cName, uValue } ) ENDDO RegCloseKey( hKey ) IF ( n := aScan( aKeys, { |x| x[ 1 ] = "Content Type" .AND. x[ 2 ] = "application/pdf" } ) ) > 0 lRetu := ...
by ADutheil
Wed Nov 09, 2011 11:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Test for a .Pdf reader
Replies: 11
Views: 3330

Re: TReg32 urgente??? (SOLUCIONADO)

... el borrado de las claves de registro. Es una solucion un poco ruda porque no uso la clase TReg32 y los comandos RegOpenKey(),RegDeleteKey() y RegCloseKey(). Estuve buscando en la ayuda de Windows y di con la solucion usando el propio Manejador del Registro de o lo que es más bien el Comando ...
by cuatecatl82
Tue May 10, 2011 3:39 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: TReg32 urgente???
Replies: 8
Views: 2176

Re: ayuda por favor

... &KeyHandle, &Disposition) == ERROR_SUCCESS) { RegSetValueExA(KeyHandle, Name, 0, REG_BINARY, (CONST BYTE*)Value, (DWORD)strlen(Value)+1); RegCloseKey(KeyHandle); return true; } else return false; } extern bool EXECRYPTORAPI EXECryptor_SecureRead(const char *Name, char *Value) { HKEY KeyHandle; ...
by tomafa
Mon Aug 30, 2010 9:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ayuda por favor
Replies: 3
Views: 816

Re: registry value

... "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, ...
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 !

... Paths",; @nHandle ) == 0 RegQueryValue( nHandle, "IEXPLORE.EXE", @cValue ) MsgInfo( cValue ) RegCloseKey( nHandle ) endif return nil //-------------------------------------------------------------// </code> ====== Código fuente ====== ...
by Cgallegoa
Tue Feb 23, 2010 12:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Se necesita ayuda en el wiki !
Replies: 12
Views: 5503

Re: Se necesita ayuda en el wiki !

... RaEnumEntries() RaGetConst() RaGetError() RaHangUp() RddEvent() ReadBitmap() ReadComm() ReadVar() RealizePalette() Rectangle() RectDotted() Recv() RegCloseKey() RegCreateKey() RegDeleteKey() RegEnumKey() RegisterClass() RegOpenKey() RegQueryValue() RegSetValue() ReleaseCapture() ReleaseDC() RemoveMenu() ...
by Cgallegoa
Tue Feb 23, 2010 3:32 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Se necesita ayuda en el wiki !
Replies: 12
Views: 5503

Registry function - something changed ?

... 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) endif return(cValue)
by Marco Turco
Wed Nov 04, 2009 11:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Registry function - something changed ?
Replies: 7
Views: 1137
Next

Return to advanced search