PC Review


Reply
 
 
Joseph Greenberg
Guest
Posts: n/a
 
      27th Jul 2009
Anybody know how to get an access report to include crop marks? Also, is
there a way to print a border to each page?


 
Reply With Quote
 
 
 
 
fredg
Guest
Posts: n/a
 
      28th Jul 2009
On Mon, 27 Jul 2009 17:47:35 -0400, Joseph Greenberg wrote:

> Anybody know how to get an access report to include crop marks? Also, is
> there a way to print a border to each page?


I would suppose you could simply place Pipe and Underscore
characters "_|" at each corner of the report, But then you must
start and stop the actual text and data of the report within these
marks.

_| |_
Text here
Text here
_ _
| |

There is no Border property, as such, for a report, but you could use
the Line method in the Report's Print event to place lines
around the report.
I believe there is an example of code in VBA help to place a border
around the page. You can use it.
Look up the "Line Method".

Remember most modern printers have minimum no print margin areas.
--
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail
 
Reply With Quote
 
Duane Hookom
Guest
Posts: n/a
 
      28th Jul 2009
This is the code based on 1" top and bottom margins.

Private Sub Report_Page()
Dim intMarkLength As Integer
Dim intPageHeight As Integer
intMarkLength = 100
intPageHeight = 9 * 1440
Me.Line (0, 0)-Step(intMarkLength, 0)
Me.Line (0, 0)-Step(0, intMarkLength)
Me.Line (Me.Width - intMarkLength, 0)-Step(intMarkLength, 0)
Me.Line (Me.Width, 0)-Step(0, intMarkLength)
Me.Line (0, intPageHeight)-Step(intMarkLength, 0)
Me.Line (0, intPageHeight - intMarkLength)-Step(0, intMarkLength)
Me.Line (Me.Width - intMarkLength, intPageHeight)-Step(intMarkLength, 0)
Me.Line (Me.Width, intPageHeight - intMarkLength)-Step(0, intMarkLength)
End Sub
--
Duane Hookom
Microsoft Access MVP


"fredg" wrote:

> On Mon, 27 Jul 2009 17:47:35 -0400, Joseph Greenberg wrote:
>
> > Anybody know how to get an access report to include crop marks? Also, is
> > there a way to print a border to each page?

>
> I would suppose you could simply place Pipe and Underscore
> characters "_|" at each corner of the report, But then you must
> start and stop the actual text and data of the report within these
> marks.
>
> _| |_
> Text here
> Text here
> _ _
> | |
>
> There is no Border property, as such, for a report, but you could use
> the Line method in the Report's Print event to place lines
> around the report.
> I believe there is an example of code in VBA help to place a border
> around the page. You can use it.
> Look up the "Line Method".
>
> Remember most modern printers have minimum no print margin areas.
> --
> Fred
> Please respond only to this newsgroup.
> I do not reply to personal e-mail
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Crop marks Joseph Hand Microsoft Access Reports 4 23rd Mar 2009 12:37 AM
Crop Marks =?Utf-8?B?R2luZ2VyIFBpbGxheQ==?= Microsoft Word Document Management 2 1st Sep 2006 05:45 PM
Crop Marks =?Utf-8?B?R2luZ2VyIFBpbGxheQ==?= Microsoft Word New Users 2 1st Sep 2006 05:24 PM
Registry fix to remove margin marks or crop marks on page corners, courtesy of Jay Freedman Bob Wang Microsoft Word Document Management 1 5th Feb 2006 01:03 AM
Crop marks dt688 Microsoft Word New Users 3 18th Sep 2003 02:59 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 01:44 AM.