Search results for query: *

  • Users: Leon
  • Order by date
  1. L

    Print Problem - Image Overlap using Print Document - Print Page Event

    Resolved Thank you. It now works.
  2. L

    Print Problem - Image Overlap using Print Document - Print Page Event

    Observation: The printpage event seems be to firing twice on each pass even after "HasMorePages=false" Is this a "bug".
  3. L

    Print Problem - Image Overlap using Print Document - Print Page Event

    I moved that statement: Public z As Integer I still get the same results. 4 pages overlapped onto 2 pages.
  4. L

    Print Problem - Image Overlap using Print Document - Print Page Event

    This is the code that is producing the 4 pages overlapped onto 2 pages. ________________________________________________________ PrivateSub pdoc_PrintPage(ByVal sender AsObject, ByVal e As System.Drawing.Printing.PrintPageEventArgs) Handles pdoc.PrintPage Static z AsInteger...
  5. L

    Print Problem - Image Overlap using Print Document - Print Page Event

    CORRECTION In reference to the previous post. What seems to be happening is, It looks like 4 pages (images) are being generated. Two pages are on Page 1 and two pages are on Page 2 Pages 1 and 2 overlap on Page 1 and Pages 3 and 4 overlap on Page 2. In this example, it should...
  6. L

    Print Problem - Image Overlap using Print Document - Print Page Event

    Problem with PrintDocument Text Overlap This is the code for my Printpage event (see below). In this case, I get 2 pages (which is correct). However, on Page 1, I get "This is page 12" but the 1 and 2 overlap. And on Page 2, I get "This is page 34" but the 3 and 4 overlap. So, the...
  7. L

    Print Problem - Overlapping text

    I am trying to print varaible data, namely, my counter variable "x" in the below statement. e.Graphics.DrawString(text & x , printFont, System.Drawing.Brushes.Black, 0, 0) For example, if I want to print 5 pages and print 1 on page 1 and 2 on page, etc. What seems to happen is that the...
  8. L

    Print Problem - Image Overlap using Print Document - Print Page Event

    I am printing images using the e.Graphics.Drawimage() function in the printpage event. The problem is that when attempting to print multiple images, the images overlap. That is, when I attempt to print 3 images on 3 separate pages, I get 2 pages with 1 image on page 1 and 2 images on page 2...
Back
Top