RabbieBurns Posted January 30, 2009 Report Posted January 30, 2009 (edited) I have created a GUI with autoit with some buttons, which when pressed execute a .vbs script which prints out various reports from an Access Database: Set objAccess = CreateObject("Access.Application") objAccess.OpenCurrentDatabase "\\server33\wwwroot\s4\fpdb\s4.mdb" Set objCommand = objAccess.DoCmd objCommand.OpenReport "Subject Reports" objAccess.CloseCurrentDatabase MsgBox "Reports sent to the printer...",64,"School Reports" It works fine, but the problem is, that when doing it this way, some horizontal lines Ive used in making a table in the report just dont print. On any printer, any time. When opening the database manually and printing the report that way, the lines print OK. Im at a loss... Any idea why doing it this way might make the lines vanish!? Edited January 31, 2009 by RabbieBurns
RabbieBurns Posted January 31, 2009 Author Report Posted January 31, 2009 Solved. I increased the thickness of the lines on the table, and they all seem to print fine now. Wierd.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now