Recent content by currie

  1. C

    Blank page after category on Report

    Well, I got it to work, but not by conventional means. I ended up adding a couple text boxes to the Group Footer, and then using the code below (along with a PageCounter increment in the page header): Private Sub GroupFooter2_Format(Cancel As Integer, FormatCount As Integer) 'If the last...
  2. C

    Blank page after category on Report

    Slightly more progress... Private Sub GroupFooter2_Format(Cancel As Integer, FormatCount As Integer) If (PageCounter Mod 2 <> 1) Then 'Insert Blank Page Reports![Appendix_4a].Section(acFooter).ForceNewPage = 1 MsgBox PageCounter, , "This Should Only Appear On Reports...
  3. C

    Blank page after category on Report

    This is where I'm at with the code. It seems to work (ie: the message box pops up when it should), however, the code to print the blank page doesn't work - the code I'm using is from the Access 2000 Help, however, I'm not sure what the "Section(acDetail)" refers to. Any ideas? I'm trying to...
  4. C

    How do I print a blank page conditionally

    Dokuin, Did you find a solution to this problem? - Ryan
  5. C

    Blank page after category on Report

    Val, I just came across this info... my question is - will each computer that uses this program require that that DLL be installed? Thanks!! - Ryan
  6. C

    Blank page after category on Report

    David, IsOdd is EXACTLY what I need... except that it seems to be a no-go! Access 2000 won't accept it as a valid function. Any other suggestions?? - Ryan
  7. C

    Blank page after category on Report

    David, The report doesnt use page numbers. The categories of the report each have a 'tab' along the vertical edge with the category title on it, so that you can quickly thumb through the report to find the category you need. There is no purpose to numbering the pages in this report - it's...
  8. C

    Blank page after category on Report

    Ok, this is what I've come up with. In the page header, I'm going to add code that does this: round((detail_count / 4)+0.25) Thus the result from this will be the page number. Now, I need to know if here is a VB function to determine if the number is even or odd? On odd-numbered pages, I...
  9. C

    Blank page after category on Report

    Chris, I did have each section as a stand-alone report, however, that requires that I have about 180 individual reports (I'm sure you see the inconvenience here ). I may have a solution using grouping, however. Thanks for your response! - Ryan
  10. C

    Blank page after category on Report

    I am creating a report that is based on various different categories of information (example: Airports, Fire Departments, Police Stations are all "categories"). For each category, there are a varying number of records. For example, Airports may have 5 records, Fire Departments may have 13...
  11. C

    Spanning Headers

    Hi there, Is it possible to span across the page header into the 'detail' section of a Report so that I can display a tab along the edge of each page of my Report that details the page title? This would make it much easier/faster to search through a large printed document (much like a...
  12. C

    Print to File - VB Code?

    Does anyone know if there is code to print to a file? I cant dig anything up in the help or on Microsoft's website. Any help would be greatly appreciated. - Ryan
  13. C

    Creating an "Installer"

    Hi all, I'd like to create a very basic "installer" for my Access Database. Basically, all I want to do is use a command button with a couple of commands to copy certain files from the CD to the user's hard drive. Any pointers on doing this (I lack VB coding experience)? Thanks! - Ryan
  14. C

    acNormal - Print to File Possible?

    Hey all, I want to do a: DoCmd.OpenReport "Report_Name", acNormal but rather than sending the document to the default printer, I'd like for it to print to file. Is there a command for this? Or something similar that will work? The reason I am doing this is because I have a Table of...
  15. C

    Printing Word Documents

    Hi all, Creating a form that will print various reports and word documents. Is it possible to use a DoCmd (or similar) command to print a Word Document without loading it? Also, any pointers for creating large (50+ page) reports without using table data? I'd like to convert these word...
Back
Top Bottom