have to modify a prn file which is generated by printer
-
I have a prn file which prints bar-code. How can change the barcode value through File IO streams in VC++ 6.0 Kindly help me.
-
I have a prn file which prints bar-code. How can change the barcode value through File IO streams in VC++ 6.0 Kindly help me.
Can you tell what effort you put do this till now?
-
I have a prn file which prints bar-code. How can change the barcode value through File IO streams in VC++ 6.0 Kindly help me.
See this link , it may help you.. http://www.codeguru.com/cpp/w-p/dll/tips/article.php/c12583/TBarCodeDLLBoard-the-Barcode-Bandwagon.htm[^]
-
I have a prn file which prints bar-code. How can change the barcode value through File IO streams in VC++ 6.0 Kindly help me.
In order to replace content you have to recognize it. That is you have to write a (possibly simple) parser for the
PRN
file you are dealing with. If the specifications of suchPRN
format are available then check them out, otherwise you have to (if possible) reverse engineer it.THESE PEOPLE REALLY BOTHER ME!! How can they know what you should do without knowing what you want done?!?! -- C++ FQA Lite
-
I have a prn file which prints bar-code. How can change the barcode value through File IO streams in VC++ 6.0 Kindly help me.
1. google for barcode reader source code 2. google for barcode printing source code 3. feed the former with your .prn file and get the code it represents 4. feed that to the latter to generate a new .prn file.
GOTOs are a bit like wire coat hangers: they tend to breed in the darkness, such that where there once were few, eventually there are many, and the program's architecture collapses beneath them. (Fran Poretto)