Search results

  1. GinaWhipp

    Defining Variables

    You mean like change the report it was printing?
  2. GinaWhipp

    Defining Variables

    Hmm, I would store image, location of command button in a table but okay. What could be common? The placement? The image? And now I'm not getting what the Module would be used for? If you are just *moving* the command button the code goes with it since it's on the one Form. If it's on a...
  3. GinaWhipp

    Defining Variables

    And a screen shot (or maybe a couple) might help because no way there is not an easier quicker way to get this done.
  4. GinaWhipp

    Defining Variables

    So, here's me trying to figure out what you are saying here... Are you just changing the background picture but the buttons stay the same? No need for different Forms. Just apply what Micron made reference to, have a table that stores the path to the image and when you look up the Building...
  5. GinaWhipp

    Defining Variables

    Perhaps you should paste the code you have now.
  6. GinaWhipp

    Defining Variables

    You can what @Isaac suggested but if it's on the Form not sure why you need to declare it. It should only pull for the referenced control. So, once you select the Building you can just pick any report you want to print, the code does not care that you are clicking a different command button.
  7. GinaWhipp

    Defining Variables

    You can just put the DoCmd.OpenReport.... lines under one Command Button., no need to separate them since you want them to all open at once.
  8. GinaWhipp

    Defining Variables

    Hmm, not really suited for a Module if each report has different parameters and names. I mean you could do it but seems like more work than it is worth. Each report will already opens filtered. You just need to copy the code and change Report Name and Where statement. Or am I misunderstanding?
  9. GinaWhipp

    Defining Variables

    I was not disagreeing with you, sorry if it came off like that. Was just pointed out that not really necessary unless that control is not on the Form. (Always more than one way to skin a cat. (My apologies to the cat lovers. 🙃 ))
  10. GinaWhipp

    Defining Variables

    There is no need to declare a control which is already on your Form, unless it is NOT a control on your Form and a Public Variable.
  11. GinaWhipp

    Defining Variables

    My bad, get rid of the acNormal at the end... DoCmd.OpenReport "rptElevators", acViewReport, "", "[BldgAbb_ID]='" & Me.BldgAbb_ID & "'"
  12. GinaWhipp

    Defining Variables

    Hmm, try... DoCmd.OpenReport "rptElevators", acViewReport, "", "[BldgAbb_ID]='" & Me.BldgAbb_ID & "'", acNormal
  13. GinaWhipp

    Introduction

    Welcome to the Forum!
  14. GinaWhipp

    Solved Code Library

    Hmm, I use something simliar https://www.access-diva.com/d11.html But I also use MZ Tools because it allows me to use shortcuts to quickly insert code I use constantly, less typing.
  15. GinaWhipp

    Allowing selection of null from combobox

    Hmm, so using look-up tables as the Row Source for Combo Boxes and Autonumber as the Primary Key I append 0 (zero) as the first entry. This allows the User to select *nothing* from the Combo Box and allows me to *tell* the Filter what to do, in my case show all.
  16. GinaWhipp

    Solved #Deleted we keep receiving this message

    I would also run Compact & Repair on a copy of the database as perhaps the table that has the Memo field has gone bad.
  17. GinaWhipp

    New member, new to access

    Welcome to the Forum!
  18. GinaWhipp

    NEW

    Welcome to the Forum!
  19. GinaWhipp

    Email Attached PDF created incorrectly

    Hmm, the only time I have seen those is if there are Line Breaks. Is that what is happening here?
  20. GinaWhipp

    Angelina Jordan - the rise of a mega star

    I remember her and she really is talented! I could not believe what I was watching when I saw it.
Back
Top Bottom