How to create a system print multiple images vb 2010?

Asked By 50 points N/A Posted on -
qa-featured

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.

SHARE
Answered By 0 points N/A #185907

How to create a system print multiple images vb 2010?

qa-featured

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.

Related Questions