Results 1 to 7 of 7
  1. #1
    data808 is offline Noob
    Windows XP Access 2010 32bit
    Join Date
    Aug 2012
    Posts
    727

    Printing form problems

    Why is that whenever I print current form it prints out two borders? One across the top of the page and one on the left side of the page from top to bottom.



    Also, why is that where ever I have field boxes to type in on my form, when I print it, it prints a thin outline of the box. I just want it to print the text that is typed into the box.

    Any help is appreciated. Thanks.

  2. #2
    Evilferret is offline Novice
    Windows 7 64bit Access 2010 32bit
    Join Date
    Aug 2012
    Posts
    27
    Objects in your form have a property called Border Style

    By default on most (All?) newly created objects, Border Style is set to solid with a border width of 1pt. This will make a box around the object.

    To shut off the border, right click on the object and select Properties from the dropdown list. The properties sheet will be displayed on the right-hand side of the screen. Then modify the Border Style property, changing it to Transparent.
    Click image for larger version. 

Name:	accesspropertysheet.png 
Views:	17 
Size:	18.3 KB 
ID:	8942

    If you want the border displayed during data input, but not in printing it's a bit more complicated. You'll probably need to add a print button to the form, then add some VBA code to set the .BorderStyle property on the objects when the button is clicked (Before printing) followed by setting it back after printing has completed.

  3. #3
    Missinglinq's Avatar
    Missinglinq is offline VIP
    Windows 7 64bit Access 2007
    Join Date
    May 2012
    Location
    Richmond (Virginia, not North Yorkshire!)
    Posts
    3,018
    Quote Originally Posted by Evilferret View Post

    ...If you want the border displayed during data input, but not in printing it's a bit more complicated...
    And it's a little more complicated because Forms are not intended to be printed! That's what Reports are for!

    Linq ;0)>

  4. #4
    data808 is offline Noob
    Windows XP Access 2010 32bit
    Join Date
    Aug 2012
    Posts
    727
    Interesting. Well to answer the first post, i dont really want the border even before i print. So if there is a way to get rid of it all together, how would you do that?

    Then to answer this post below, how do reports work? And how would i get a report to generate after I've entered all my data into a form so i can print this report?


    Quote Originally Posted by Missinglinq View Post
    And it's a little more complicated because Forms are not intended to be printed! That's what Reports are for!

    Linq ;0)>

  5. #5
    Evilferret is offline Novice
    Windows 7 64bit Access 2010 32bit
    Join Date
    Aug 2012
    Posts
    27
    To get rid of the border entirely, just follow the instructions I posted above:
    To shut off the border, right click on the object and select Properties from the dropdown list. The properties sheet will be displayed on the right-hand side of the screen. Then modify the Border Style property, changing it to Transparent.
    (See image in my original post)

    Reports are read-only and are designed for displaying/printing your data. There's a lot to learn - More than I care to put into this post, but here's a basic tutorial to get you started:
    http://www.gcflearnfree.org/access2010/10.2

  6. #6
    Missinglinq's Avatar
    Missinglinq is offline VIP
    Windows 7 64bit Access 2007
    Join Date
    May 2012
    Location
    Richmond (Virginia, not North Yorkshire!)
    Posts
    3,018
    Quote Originally Posted by data808 View Post

    ...how would i get a report to generate after I've entered all my data into a form so i can print this report?
    Simplest way would be using the Report Wizard. On the Ribbon click on 'Create' and then 'Report Wizard.' The Wizard will walk you through the process.

    Linq ;0)>

  7. #7
    ssanfu is offline Master of Nothing
    Windows XP Access 2000
    Join Date
    Sep 2010
    Location
    Anchorage, Alaska, USA
    Posts
    9,664
    And how would i get a report to generate after I've entered all my data into a form so i can print this report?
    One concept to remember is: tables store data. Forms and reports are just objects (methods) to view the data. No data is stored in forms or reports.


    You can make a report look just like your form, and using the same query, return the same data.

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Printing Problems
    By combine21 in forum Reports
    Replies: 1
    Last Post: 10-28-2010, 10:52 AM
  2. Printing a form
    By l8poulse in forum Forms
    Replies: 1
    Last Post: 08-19-2010, 06:29 AM
  3. problems with a printing macro
    By Grooz13 in forum Access
    Replies: 1
    Last Post: 08-09-2010, 11:53 AM
  4. form printing
    By nkuebelbeck in forum Forms
    Replies: 4
    Last Post: 04-01-2010, 01:39 PM
  5. Printing Form
    By linjoye in forum Reports
    Replies: 1
    Last Post: 02-19-2010, 08:09 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums