View Single Post
Old 03-17-2006, 08:06 AM   #5 (permalink)
CSflim
Sky Piercer
 
CSflim's Avatar
 
Location: Ireland
Well the application is a game build on the Torque Game Engine. This engine does not provide any support for printing. So I will not be relying on that to do the printing, so you can pretty much imagine that I just have a bare bones c++ program that has some data in it, that I want to send to the printer somehow. Is there any library that I can download that would help me out?

I was thinking that perhaps the simplest way would be to generate a html file from the data, and then tell the operating system to print this file, as if a user had right clicked the file and selected print, but I don't know how to do this. Do you think this is a good way to do this? And if so, how do I do it in code?
__________________
CSflim is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76