hi everyone, im planning to create bingo cards for some school project. i used a picture box to generate the random numbers in the cards.. i already accomplished it.. my problem however is that i want to print 4 cards on a single bond paper to maximaize the space. when i used this code
it only prints the first picture box (picture1(0))... how can i manipulate my program so that i can print the 4 picture boxes at its corresponding position in the bond paper in a single printing process.. please help.. i really need it badly... thanks in advance..VB Code:
Printer.PaintPicture Picture1(0).Image, 50, 100 Printer.PaintPicture Picture1(1).Image, 6225, 100 Printer.PaintPicture Picture1(2).Image, 50, 8740 Printer.PaintPicture Picture1(3).Image, 6225, 8740 Printer.EndDoc


Reply With Quote