shaju.a.antony
New member
- Joined
- Sep 26, 2013
- Messages
- 2
- Programming Experience
- 1-3
Hi,
I have a image array, it consists 100 images (50 x 50 image size)
i need to print 10 images in 1st page and another 10 images in 2nd page like it going on print up to the ubound(array)
i checked like the following
For n As Integer = initcount To img.Count - 1
ev.Graphics.DrawImage(img
, xcol, topMargin, 150, 100)
If cnt > 10 then
cnt=1
ev.HasMorePages = True
Endif
Next
it is not working...
please help me to do
Thanks
Shaju
I have a image array, it consists 100 images (50 x 50 image size)
i need to print 10 images in 1st page and another 10 images in 2nd page like it going on print up to the ubound(array)
i checked like the following
For n As Integer = initcount To img.Count - 1
ev.Graphics.DrawImage(img
If cnt > 10 then
cnt=1
ev.HasMorePages = True
Endif
Next
it is not working...
please help me to do
Thanks
Shaju