I am currently printing my form with Me.PrintForm.
Is there anyway to add some text to the bottom of the image that is printed.
I tried the following but it doesn't get the form image
Code:
 'Print picture at certain location
    Printer.PaintPicture Me.Image, 20, 20

    Printer.CurrentX = 10   'Print text at certain location
    Printer.CurrentY = 100
    Printer.Print "User Name: " & Me.lblUser.Caption
    'Tell it to print
    Printer.EndDoc