Search found 18 matches: dectohex

Return to advanced search

Re: Scrolls en Icon Group

Victor,

Prueba a ponerle este valor en el estilo del control:

0x50310000

Es equivalente a:

MsgInfo( DecToHex( nOr( WS_CHILD, WS_VISIBLE, WS_TABSTOP, WS_VSCROLL, WS_HSCROLL ) ) )
by Antonio Linares
Sat Aug 03, 2013 6:31 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Scrolls en Icon Group ( SOLUCIONADO )
Replies: 12
Views: 7595

Ayuda con comunicacion TCP IP

... n, nResult := 0 for n = Len( cBin ) to 1 step -1 if SubStr( cBin, n, 1 ) == "1" nResult += 2 ^ ( Len( cBin ) - n ) endif next return DecToHex( nResult ) Pruebo con un programa llamado Docklight Scripting y el hard responde correctamente, pero mi aplicacion no. La gente que provee ...
by Jorge Jaurena
Mon Dec 19, 2011 3:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con comunicacion TCP IP
Replies: 5
Views: 2875

Error al usar cValToChar() con punteros

... a continuación, la aplicación aborta anormalmente : cValToChar( WIN_N2P( oWnd:hWnd ) )  El problema radica en la llamada a DecToHex() que realiza cValToChar() ante un puntero : ...      case cType == "P"           return "0x" + DecToHex( uVal )...  ...
by Juan Gálvez
Wed Aug 25, 2010 8:10 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error al usar cValToChar() con punteros
Replies: 1
Views: 351

Urgent problem with FWH 10.3 !!!!

Hello, Today I rebuilded my application with FWH 10.3. But suddenly I got an error which doesn't happen in FWH 10.2 while rebuilding. This error says : xLINK: error: Unresolved external symbol '_HB_FUN_TACTIVEX referenced from (JUDA.obj)'. xLINK: error: Unresolved external symbol '_HB_FUN_TFONT refe...
by driessen
Wed Apr 07, 2010 8:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Urgent problem with FWH 10.3 !!!!
Replies: 3
Views: 1617

Re: New FTDN September 2009 (9.09)

... http://wiki.fivetechsoft.com/doku.php?id=fivewin_class_tskinbutton * Corrección: Pequeño error corregido en la función DecToHex( nDecValue ) --> cHex. * Mejora: Se ha renombrado la función de FWH GetNew() como FWGetNew() para evitar conflictos con la de Harbour GetNew(). ...
by Antonio Linares
Wed Sep 23, 2009 9:05 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN September 2009 (9.09)
Replies: 1
Views: 3125

New FTDN September 2009 (9.09)

... http://wiki.fivetechsoft.com/doku.php?id=fivewin_class_tskinbutton * Fix: Bug solved in function DecToHex( nDecValue ) --> cHex * Enhancement: FWH function GetNew() renamed as FWGetNew() to avoid conflicts with Harbour GetNew(). * Enhancement: ...
by Antonio Linares
Wed Sep 23, 2009 9:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN September 2009 (9.09)
Replies: 1
Views: 3125

Re: Error en la funcion "DecToHex(n)"

JM,

Como te indica Daniel, ya está arreglada e incluida para el próximo build :-)
by Antonio Linares
Tue Sep 08, 2009 11:00 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error en la funcion "DecToHex(n)"
Replies: 6
Views: 837

Re: Error en la funcion "DecToHex(n)"

Saludos jmGarcia

JmGarcia wrote:Antonio, no te olvides de corregir esta función en la próxima entrega


reparada e incluida para la proxima version
by Daniel Garcia-Gil
Tue Sep 08, 2009 9:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error en la funcion "DecToHex(n)"
Replies: 6
Views: 837

Re: Error en la funcion "DecToHex(n)"

Antonio, no te olvides de corregir esta función en la próxima entrega :mrgreen:
by JmGarcia
Tue Sep 08, 2009 9:07 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error en la funcion "DecToHex(n)"
Replies: 6
Views: 837

Re: Error en la funcion "DecToHex(n)"

Antonio, corregirás esta función en la próxima entrega ¿no?
by JmGarcia
Mon Aug 31, 2009 6:35 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error en la funcion "DecToHex(n)"
Replies: 6
Views: 837

Re: Error en la funcion "DecToHex(n)"

Hola la solucion function DecToHex( nValue )   local nMod, cDec := ""   while nValue >= 16      nMod   = nValue % 16      nValue = Int( nValue / 16)  ...
by Marcelo Via Giglio
Fri Aug 28, 2009 1:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error en la funcion "DecToHex(n)"
Replies: 6
Views: 837

Re: Error en la funcion "DecToHex(n)"

Hola

dec hex
0 0
1 1
. .
9 9
10 A
11 B
12 C
13 D
14 E
15 F
16 10 NO G entonces tambien esta mal
by Marcelo Via Giglio
Fri Aug 28, 2009 1:11 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error en la funcion "DecToHex(n)"
Replies: 6
Views: 837

Error en la funcion "DecToHex(n)"

Llevo loco varios días con un error en la función "DecToHex" de FWH. En todas las versiones.

DecToHex(16) devuelve "G" en vez de "F" :evil:
by JmGarcia
Fri Aug 28, 2009 11:21 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error en la funcion "DecToHex(n)"
Replies: 6
Views: 837

Solo necesitas nRandom( [<nRango>] ) --> n
y DecToHex( n ) --> cHex.

Ambas estan en FWH y asi puedes construir tu función desde PRG
by Antonio Linares
Sat Feb 23, 2008 2:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funcion uuid()
Replies: 9
Views: 1992

Hi Antonio, I've tried with the DecToHex() but still end up with an 8 char Hex number instead of the needed 4 char hex number as in the example below: Header <command> CRC DIAP000<%REQUEST CORRUPT> 734D DIAP000<%INVALID CRC ...
by Jeff Barnes
Fri Feb 22, 2008 7:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Generating a CRC
Replies: 11
Views: 1970
Next

Return to advanced search