View Single Post

  #2 (permalink)  
Old 10-03-2007, 03:02 PM
ganeshmoorthy ganeshmoorthy is offline
Junior Member
 
Join Date: Aug 2007
Location: Indian living in UAE
Posts: 4
ganeshmoorthy is on a distinguished road
Send a message via MSN to ganeshmoorthy Send a message via Yahoo to ganeshmoorthy
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
Reply With Quote