Visual Basic 2005 Express Edition:
I would like to print the banner at the top of Form1 (it is a color strip that goes from dark blue to light blue) at the top of my printed page.
How can I do that
Visual Basic 2005 Express Edition:
I would like to print the banner at the top of Form1 (it is a color strip that goes from dark blue to light blue) at the top of my printed page.
How can I do that
How can I print the Form1 banner on my report page? (dark blue to light blue color strip)
DIII
That worked great!
Thanks a LOT!
stefandemetz
You can use the following command:
Dim bm As New Bitmap(Banner.Width, Banner.Height)
Dim bmLoc As Point = New Point(100, 100)
Banner.DrawToBitmap(bm, New Rectangle(0, 0, Bm.Width, bm.Height))
args.Graphics.DrawImage(bm, bmLoc)