Hi guys,
How to create a system print multiple images vb 2010? I need to make my own visual basic programming language system that will print multiple images; I don’t have any idea about the Gui and how to connect the system in to a printer. Just like connecting a bar code device to a department store system. I really need some advice.
Expecting some help, thank you.
How to create a system print multiple images vb 2010?
Dear Curtis Marry,
Here is a code in c# to print multiple images. Hope it will work fine and you will be able to print multiple images.
private void pd_PrintPage(object sender, PrintPageEventArgs e)
   {
           e.Graphics.DrawImage(PrintPic.Image, 0, 0);
           PageCounter++;
           e.HasMorePages = (PageCounter != SelectedCollection.Count);Â
   }
   private void pd_BeginPrint(object sender, PrintEventArgs e)
   {
           PageCounter = 0;
   }
Â
Thank you.