Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Printing a Bitmap to a Printer

Status
Not open for further replies.

StevenK

Programmer
Jan 5, 2001
1,294
GB
How do we print a graphic to a printer (namely a bitmap - '.bmp' file).

Is this something that can be done simply?

Thanks in advance.
Steve
 
I am sorry.. this prints only documents not image files

Code:
        Dim myprocess As New Process
        myprocess.StartInfo.FileName = "c:\mytext.txt"
        MyProcess.StartInfo.Verb = "Print"
        MyProcess.Start()
try this with image files.

________________________________________________________
Zameer Abdulla
Help to find Missing people
 
Is there anything similar we can do - perhaps using Windows Paint application as the channel to open / print the file.

Any further suggestions would be appreciated.

Thanks again.
Steve
 
Do a google search. There are thousands of examples out there to print images.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top