|
where do you want to print, on the form or to the printer. If on the form, this code is correct and working fine. If you want to print on the printer then the code should be
Dim i As Integer
For i = 1 To 99
Printer.Print i
next i
Printer.EndDoc
try this and revert me if this is want you wanted
|