A Anthony Viscomi Aug 29, 2004 #1 Is there any way to put a border or frame around the entire report page? Thanks! AnthonyViscomi
M Marshall Barton Aug 29, 2004 #2 Anthony said: Is there any way to put a border or frame around the entire report page? Click to expand... You can use the Line method in the report's Page event to do this. Me.Line (0,0) - (Me.Width, 10 * 1440), , B Where the 10 needs to replaced by your paper height less top and bottom margins.
Anthony said: Is there any way to put a border or frame around the entire report page? Click to expand... You can use the Line method in the report's Page event to do this. Me.Line (0,0) - (Me.Width, 10 * 1440), , B Where the 10 needs to replaced by your paper height less top and bottom margins.
M Marshall Barton Aug 29, 2004 #4 Anthony said: Thanks Marshall it works great! How can I make it thicker? Click to expand... Set the report's DrawWidth property: Me.DrawWidth = 15 Check Help for all the other report properties that can affect the Line, Circle and Print methods. -- Marsh MVP [MS Access]
Anthony said: Thanks Marshall it works great! How can I make it thicker? Click to expand... Set the report's DrawWidth property: Me.DrawWidth = 15 Check Help for all the other report properties that can affect the Line, Circle and Print methods. -- Marsh MVP [MS Access]