
Binary data type in VB4???
Quote:
> I have a copy of VB4 and seem to have hit a wall with Binary data
>types....is this even possible with VB or do I have to get either VC++
>or C++ Builder?
Use arrays of Byte data type.
Most "string" functions can be used on the overall Byte array.
Omit the subscript (use just the array name), and it acts like a "string"
of bytes rather than text characters.
-- Rick
--
(Rick Rutt is a system architect living and working in metropolitan Detroit.)