Search found 13 matches: regenumkey

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: 963

Re: Redirección de impresion en Terminal Server

Que otras claves hay en HKCURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows\SessionDefaultDevices ? Puedes obtenerlas todas usando RegEnumKey(). Aqui tienes un ejemplo de uso: // Retrieving all printers info from the registry#define  HKEY_LOCAL_MACHINE      2147483650function ...
by Antonio Linares
Wed Jun 01, 2016 7:59 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Redirección de impresion en Terminal Server
Replies: 8
Views: 1543

Re: REGENUMKEY funciona bien ?

funcionando . :D
Al final la funcion a usar era REGENUMValue .
Gracias.

pd. Estaría bien añadir un metodo a la clase Treg32().

algo como :
METHOD GetNumValue( nIndex, cRefValue ) INLINE RegNumValue( ::nHandle, nindex-1 , cRefValue )
by mastintin
Fri Jul 10, 2015 3:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: REGENUMKEY funciona bien ?
Replies: 2
Views: 521

Re: REGENUMKEY funciona bien ?

...        "System\CurrentControlSet\Control\Print\Printers", @nHandle ) == 0      while RegEnumKey( nHandle, n++, @cValue ) == 0         MsgInfo( cValue )      end      ...
by Antonio Linares
Fri Jul 10, 2015 3:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: REGENUMKEY funciona bien ?
Replies: 2
Views: 521

REGENUMKEY funciona bien ?

Necesito recorrer todas las subkeys de un clave de registro , pero parece que la funcion REGENUMKEY no funciona como debe o yo no entiendo su funcionamiento .
La clase treg32 no contiene nada de codigo para esta funcion y el ejemplo testreg2 pare no funcionar ...
by mastintin
Fri Jul 10, 2015 3:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: REGENUMKEY funciona bien ?
Replies: 2
Views: 521

New FTDN October/Octubre 2011 (FWH 11.10)

* Fix: functions ReGetCharFormat() and RegGetSelection() incorrectly used hb_storvnl() instead of hb_stornl() * Fix: functions RegEnumKey() and RegEnumValue() incorrectly used hb_storvc() and hb_storvnl() instead of hb_storc() and hb_stornl() * Fix: functions RegQueryValueEx() and RegCreateKey() ...
by Antonio Linares
Wed Nov 02, 2011 1:24 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN October/Octubre 2011 (FWH 11.10)
Replies: 3
Views: 4219

Re: Se necesita ayuda en el wiki !

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

Anserkk, I have tried today and it's ok here with XP Pro SP2. I suspect the RegOpenKey() or RegEnumKey() be the cause of this. I look to solve it now. ********** VERY IMPORTANT ************** These functions assume than SET EXACT is ON. If NOT : Put this at the START ...
by Badara Thiam
Tue Nov 04, 2008 4:29 pm
 
Forum: FiveWin for CA-Clipper
Topic: Print system functions
Replies: 25
Views: 10437

... error: Macro redefinition of 'WinHelp'. D:\COMPILER\xHB\c_include\win\winreg.h(211): error: Macro redefinition of 'RegEnumKey'. D:\COMPILER\xHB\c_include\win\winreg.h(215): error: Macro redefinition of 'RegOpenKey'. D:\COMPILER\xHB\c_include\win\lzexpand.h(37): error: ...
by hterce
Wed Sep 03, 2008 10:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Source code for Tree32.lib
Replies: 13
Views: 3307

... := "System\CurrentControlSet\Control\Print\Printers" IF RegOpenKey( aHKey, cSubKeys, @nHandle ) == 0 n1 := 0 DO WHILE .T. cValue := "" n2 := RegEnumKey( nHandle, n1, @cvalue ) IF n2 = 0 IF ASCAN(TIMP, STRTRAN(cValue, "," , "\")) = 0 AADD(TIMP, STRTRAN(cValue, "," , "\")) ENDIF ELSE EXIT ENDIF ...
by Badara Thiam
Mon May 29, 2006 10:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error with PrnGetPort()
Replies: 9
Views: 3167

Antonio Linares wrote:Joao,

Change REGENUMKEYS() into REGENUMKEY()


Gracias Atonio, Perfecto.
by karinha
Thu Mar 30, 2006 2:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: _HB_FUN_REGENUMKEYS
Replies: 2
Views: 701

Joao,

Change REGENUMKEYS() into REGENUMKEY()
by Antonio Linares
Thu Mar 30, 2006 2:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: _HB_FUN_REGENUMKEYS
Replies: 2
Views: 701

... string then read it back for display and it shows up on the emulator as well as an Intermec 700 (where I can examine the registry independently). RegEnumKey operates OK. BTW - the Forum seems more focused and business-like, thanks. hth regards
by Jon Munro
Wed Oct 26, 2005 7:11 am
 
Forum: FiveWin for Pocket PC
Topic: Registry functions
Replies: 18
Views: 8169

Return to advanced search