Code: Select all
"0x" + STRTOHEX( MEMOREAD( ... ) )
Code: Select all
"0x" + STRTOHEX( MEMOREAD( ... ) )
Code: Select all
// xharbour
MEMOWRIT( cFilename, oRs:Fields( "fieldname" ):Value, .f. ) // ADO
//or
MEMOWRIT( cFileName, oRs:fieldname, .f. ) // FWMARIADB library
// or both harbour and xharbour
HB_MEMOWRIT( cFileName, oRs:Fields( "fieldname" ):Value ) // ADO
// OR
HB_MEMOWRIT( cFileName, oRs:FieldName )