Transformar desde VB a Hb ?

Post Reply
User avatar
dbzap
Posts: 189
Joined: Mon Nov 07, 2005 7:36 pm
Location: Chile
Contact:

Transformar desde VB a Hb ?

Post 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
R.F.
Posts: 840
Joined: Thu Oct 13, 2005 7:05 pm

Post 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
Saludos
R.F.
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

Harbour tambien maneja valores hexadecimales nativamente :)
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
dbzap
Posts: 189
Joined: Mon Nov 07, 2005 7:36 pm
Location: Chile
Contact:

Post by dbzap »

antonio, cual seria la expresion para harbour normal de la expresion en hexadecimal ? la misma que indica rene ?
Post Reply