Skip to main content

Appendixes

In this section, you will find additional information about the RxSymbols object and its usage.

Appendix A: Barcode Appearances

The RxSymbols object can generate many barcode encoding types. Among the supported encodings, you will find well-known standards like PDF417, Aztec, DataMatrix, and QR. Below, you will find a few examples of how the different barcodes look when they are generated with RxSymbols:

Aztec 2D

  • Text: Rasterex Software a.s.

    Aztec 2D

DataMatrix 2D

  • Text: Rasterex Software a.s.

    DataMatrix 2D

PDF417 Encoding

  • Text: Rasterex Software a.s.

    PDF417 Encoding

Code 128-B Encoding

  • Description: With both label and the actual encoded text displayed (IncludeText enabled).

    Code 128-B Encoding

Code 39 Encoding

  • Description: With both label and the encoded text displayed.

  • Note: This standard can only encode uppercase letters.

    Code 39 Encoding

Code 93 Encoding

  • Description: With both label and the encoded text displayed.

  • Note: This standard can only encode uppercase letters.

    Code 93 Encoding

Appendix B: Return Values

The COM objects expose one or more interfaces each. All methods defined by these interfaces return an HRESULT status value to inform the client about the success or failure of the requested operation.

Currently, the RxSDK objects return the following standard HRESULT values:

NameDescriptionValue
S_OKOperation successful0x00000000
S_FALSEOperation successful, but may have been void0x00000001
E_UNEXPECTEDUnexpected failure0x8000FFFF
E_NOTIMPLNot implemented0x80004001
E_OUTOFMEMORYFailed to allocate necessary memory0x8007000E
E_INVALIDARGOne or more arguments are invalid0x80070057
E_NOINTERFACENo such interface supported0x80004002
E_POINTERInvalid pointer0x80004003
E_HANDLEInvalid handle0x80070006
E_ABORTOperation aborted0x80004004
E_FAILUnspecified failure0x80004005
E_ACCESSDENIEDGeneral access denied error0x80070005

Notes

  • For the RxSDK components, only the S_OK value indicates a 100% successful operation.
  • All other return values should be treated as an error condition.