RFBARCODE.PullBarcode
RFBARCODE.PushBarcode

boolean PullBarcode(BSTR pszBarcodeName)
boolean PushBarcode(BSTR pszBarcodeName)

Function PushBarcode(pszBarcodeName As String) As Boolean
Stores the present configuration of the barcode reader in a Client file.

Function PullBarcode(pszBarcodeName As String) As Boolean
Sets the present configuration of the barcode reader from a Client file.

Return value
True=the function was successful, False=error.

Parameters

pszBarcodeName
    The name of the barcode file (up to 8 characters).

Remarks
The name must contain legal characters for MS-DOS filenames. Do not include dots (.) and other special characters (* , $ \ : etc).

Example
wsRfBarcode.PushBarcode "_Old" ' Save present configuration
wsRfBarcode.ClearBarcodes ' Clear all barcodes in local (application) array
wsRfBarcode.AddBarcode CODE_128, False, DECODEON, 1, 32 ' Reads Code 128 Only
wsRfBarcode.StoreBarcode "Only128", BCDISABLED   ' Send the array to the terminal
wsRfBarcode.PullBarcode "Only128"                ' Sets the scanner configuration
' Do some input here...
wsRfBarcode.PullBarcode "_Old" ' Restore the previous configuration

See also    RFBARCODE, StoreBarcode, GetBarcodeFile, DeleteBarcodeFile