Apr 7, 2008 #1 richrock316 Programmer Joined Jul 30, 2003 Messages 57 Location US I have a feeling im missing something very simple, but how do you print a JPG or BMP to the printer using code? Thanks
I have a feeling im missing something very simple, but how do you print a JPG or BMP to the printer using code? Thanks
Apr 7, 2008 1 #2 HughLerwill Programmer Joined Nov 22, 2004 Messages 1,818 Location GB Something like; 'where Pdevice may be a PictureBox or the Printer object Pdevice.PaintPicture LoadPicture(Path2BitMapFile$), x, y, wid, ht Upvote 0 Downvote
Something like; 'where Pdevice may be a PictureBox or the Printer object Pdevice.PaintPicture LoadPicture(Path2BitMapFile$), x, y, wid, ht
Apr 9, 2008 Thread starter #3 richrock316 Programmer Joined Jul 30, 2003 Messages 57 Location US Thanks Hughlerwill That got me where i needed to go. Upvote 0 Downvote