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.

link|improve this question

50% accept rate
About your tags: this has nothing to do with VS2008 or programming-languages, and I have no clue what a MSR is... – Henk Holterman Apr 10 '11 at 10:49
What do you mean by "using this command"? What are "tracks" in this case? Your question is unintelligible at the moment. Please read tinyurl.com/so-hints and edit the question to give us enough context to help you. – Jon Skeet Apr 10 '11 at 10:53
thanks i did it :P m sorry – DizitalTech Apr 10 '11 at 10:54
@DizitalTech: And where's the relevance of C# and .NET? – Jon Skeet Apr 10 '11 at 10:56
1  
@chao: I guessed as much, but the OP should have introduced this in the question. – Henk Holterman Apr 10 '11 at 11:10
show 4 more comments
feedback

closed as too localized by Jeff Atwood Apr 10 '11 at 11:30

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

1 Answer

Check "14. Command: Erase card" in the documentation - it can erase a single, selected track. Write your data, then erase track 3 maybe?

Also, check what's in that track after you erase it. Maybe erase means the same as "write all zeros", or something similar.

link|improve this answer
I am not a fool to skip that.. I want to do it in single swipe. I'll have to swipe the card twice to do it. Moreover, Even I select the erasable part what shall i do when i have to write it again??? – DizitalTech Apr 10 '11 at 11:58
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.