Recent content by s15199d

  1. S

    Selecting form objects...

    Is there an easy way to change the font-size properties of all objects on a form? I guess the first part of this question is there any way to all the form objects at once? (without making reference to each one individualy)
  2. S

    Form objects...

    Is there a function that allows you to select all of the form objects. What I want to do is to select all the form objects...have the user select a # from a drop-down list. Then set the font-size property to all of the form objects to that #. Does that make since? Is this possible?
  3. S

    Page Footer

    Thanks! It's unfortunate that it appears this isn't going to work. I'm trying to find the MS Knowledge base article I've heard about from several different sites. So far no luck!
  4. S

    Page Footer

    I would like to know if it's possible to calculate the sum of a column by page. For example in my page footer I would like to have the the sum of Units_Sold for page 1 of the report. On page 2 of the report I want the sum of Units_Sold for page 2. As an aside...I've already got the total of...
  5. S

    DoCmd.Save Question

    1) I would like to know if it's possible to save information (i.e. a table) to a place external from the database? 2) Can I allow the user to set the name of the file they want to save it as? 3) Can I set programatically a default folder I want to always save these files? Thanks in advance...
  6. S

    On KeyPress

    I'm trying to use the KeyPress event so that when someone keys in there ID and password and clicks ENTER or TAB (the keys on your keyboard) it will submit their input for verification. I don't want my user to have to click the button at the bottom of the page if they don't want to. Here's the...
  7. S

    Print multiple reports?

    Thanks trucktime works like a pro.
  8. S

    Print multiple reports?

    Almost... THANKS Trucktime. That's what I need. But, the macro is missing. The concept is there...i see what it's trying to do, and well it makes since. But, the actual macro they used to print based on which ones were checked. That macro is missing. Do you know where I might be able to...
  9. S

    Print multiple reports?

    Thanks trucktime. However, what I'm trying to do is slightly different. I don't need multiple copies of the same report. What I need is to be able to print several different reports based on the click of one button. Maybe I should give further explanation of what I'm doing. I have a form...
  10. S

    Print multiple reports?

    Is it possible to open/print multiple reports? If so how here's the code I'm using for just printing one...how do I add others? Private Sub Print_Click() DoCmd.OpenReport "Missing_Forms", acViewNormal End Sub
Back
Top Bottom