You say you have an array that you want to print out right?
You could temporarily put this in your code
[tt]
Dim I as Integer
For I = LBound(MyArray) To UBound(MyArray)
Printer.Print MyArray(I) 'For Printing Directly to Printer
Debug.Print MyArray(I) 'For Printing Directly to debug window
Next I
Printer.EndDoc
[/tt]
This will print out the values of your array either to the printer or the debug window.
You say you have an array that you want to print out right?
You could temporarily put this in your code
[tt]
Dim I as Integer
For I = LBound(MyArray) To UBound(MyArray)
Printer.Print MyArray(I) 'For Printing Directly to Printer
Debug.Print MyArray(I) 'For Printing Directly to debug window
Next I
Printer.EndDoc
[/tt]
This will print out the values of your array either to the printer or the debug window.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.