Page 1 of 1

Transformar desde VB a Hb ?

Posted: Fri May 12, 2006 9:52 pm
by dbzap
Como se traduce esta instruccion para la variable MyField en fw+h ?

** from VB
Dim MyField As String
MyField = Chr$(&h0A)
MyEpsonFPControl.AddDataField MyField

Posted: Sat May 13, 2006 12:58 am
by R.F.
Si estas utilizando xHarbour:

MyField := CHR(0x0A) // xHB maneja valores Hexa nativamente

Si estas utilizando harbour (no se si maneje Hexas nativos)

MyField := CHR(10) // "A" en Hexadecimal

Posted: Sat May 13, 2006 8:17 am
by Antonio Linares
Harbour tambien maneja valores hexadecimales nativamente :)

Posted: Sat May 13, 2006 2:11 pm
by dbzap
antonio, cual seria la expresion para harbour normal de la expresion en hexadecimal ? la misma que indica rene ?