L
LLcoolQ
I am writing an interface file to a vendor. The requirements say:
Format of the text: Text must be in the format as you would like it to
appear without embedded newline characters. Instead of newline
characters, use ASCII character 0x02. A blank like would be
represented by two 0x02 characters in a row.
I am having a hard time figuring out how to output this. i have tried
a few things such as
Dim twoAsbyte As Byte = &H2
my output has a "2" wherever i put it instead of an unprintable
character.
So the text would look like:
This is a lineone0x02this is line two0x020x02this is line 4
where 0x02 would really display unprintable characters
Thanx
Format of the text: Text must be in the format as you would like it to
appear without embedded newline characters. Instead of newline
characters, use ASCII character 0x02. A blank like would be
represented by two 0x02 characters in a row.
I am having a hard time figuring out how to output this. i have tried
a few things such as
Dim twoAsbyte As Byte = &H2
my output has a "2" wherever i put it instead of an unprintable
character.
So the text would look like:
This is a lineone0x02this is line two0x020x02this is line 4
where 0x02 would really display unprintable characters
Thanx