Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The range of byte values from ASCII 249 - 255 are reserved as system delimiters. To store binary data in a dynamic array (any variable which contains multiple values delimited by the system delimiters), the binary data must be "escaped" by using the IConv(VB) function. The escaped data replaces system delimiters with 2-byte sequences starting with char(0) and escapes char(0) with a second char(0). To convert the escaped data back to binary, use OConv(VB).

...