From the manual above: I am writting to magnetic stripe card which have 3 tracks.
I use C#.net programming interface to talk with RS232 interfaced Magnetic card reader/writer.
I can write to track 1, track 2 and track 3 using this command which are sent to the serial ports.
[1B][77][1B][73][1B][01][Some string in after conversion to hex for TRACK 1][1B]
[02][Some strings for TRACK 2][1B][03][Some String for TRACK3][3F][1C]
I can write APLHANUMBERIC characters in Track1 and only numbers in Track 2 and 3.
But my question is... In case If i don't want to write or skip writing to track 3 how can i do this?
I tried doing: [1B][77][1B][73][1B][01][Some string in after conversion to hex for TRACK 1][1B] [02][Some strings for TRACK 2][1B][03][Write nothing here?][3F][1C]
But the command interpretes nothing as a null value and replaces the old value that has been stored in track 3.
but i tried to totally skip the command[1B][03].
The MSR doesn't seem to accept the command without the information of third track [1B][03] Please guide me.. how can i do this?
I am using C#.NET to do this. I hope the command goes well to the MSR.