Search results

  1. P

    Access 2010 and Menu Bars

    I also meant to thank ypma for giving me this coding tip. Thank you!... If Not CommandBars.GetPressedMso("MinimizeRibbon") Then CommandBars.ExecuteMso "MinimizeRibbon" End If
  2. P

    Access 2010 and Menu Bars

    nschroeder - SUCCESS at last (more or less)! To get the program to do what I wanted I did the following two things... First, I went into the Customize Ribbon Options as per your suggestion and I hid ALL of the Ribbon Main tabs except the ‘Print Preview’ tab. (Again, my rationale for doing...
  3. P

    Access 2010 and Menu Bars

    nschroeder - Thanks again for the tip, I will certainly give it a try, however hiding the ribbons through the Office Menu options will probably be an 'all or none' fix. My problem is that there are times when I want to hide the ribbon and other times when I want to show the ribbon. Don't know...
  4. P

    Access 2010 and Menu Bars

    nschroeder - Thanks but the thing is I don't want my users to see the ribbon at all for fear they will just start pressing the icons to see what happens. The only time I want to display the ribbon is on the 'Print Preview' screen so they can close the window. In Access 2000 I could use the...
  5. P

    Access 2010 and Menu Bars

    ypma - Thx for the tip, works great. I have another question though, how can I Maximize the Ribbon as CommandBars.ExecuteMso ("MaximizeRibbon") does not seem to work. The reason I ask is that I use a 'Print Preview' function on one of my screens but the ribbon always comes up minimized and...
  6. P

    Access 2010 and Menu Bars

    Hello, we just upgraded to Access 2010 from Access 2000. Most of my users are volunteers who know nothing about Access or databases and so I like to restrict them to as few options as I can - including MenuBars and ToolBars. In Access 2000 I coded the following to hide (and show) MenuBars...
  7. P

    Access 2010 Upgrade Error

    Paul - Good morning, I added the Microsoft DAO 3.6 object library to the References library list and things worked fine (I did not even have to change the code to 'DAO.Database'). Thank you! However I do have one other problem. I normally hide all of the Toolbars and Menubars because I don't...
  8. P

    Access 2010 Upgrade Error

    Paul - Thanks so much for your prompt reply and the tips. I will try them first thing Thursday and let you know how it goes. Thx again.
  9. P

    Access 2010 Upgrade Error

    Hello, we recently upgraded Access from Access 2000 to Access 2010 (please forgive us for not upgrading intermediate versions of Access but we are a non-profit organization with limited funds) and I am encountering some problems which I am hoping you can help me with. I was getting a ‘missing...
  10. P

    Access 2007 Runtime program

    JLCantara - Thanks for the tip, worked like a charm.
  11. P

    Access 2007 Runtime program

    Hello, I’m not sure if this is an appropriate question for this forum but I downloaded the ‘Access 2007 Runtime’ program from Microsoft’s Download Center onto a PC which does not have Access. I then installed one of my Access applications but when I try to run this application I get the...
  12. P

    Setfocus tabs to the next field

    Beetle - Sorry for not getting back to you sooner but I just wanted to let you know that the 'cancel' statement in the BeforeUpdate event worked perfectly. Thanks again for your help!
  13. P

    Setfocus tabs to the next field

    Beetle - I did not cancel the event, I will try again first thing Monday. Thx!
  14. P

    Setfocus tabs to the next field

    Beetle - Thanks, but if I remove the SetFocus command in the BeforeUpdate event I am back to square one - the cursor tabs to the next field (JPGC) in the event I find an error.
  15. P

    Setfocus tabs to the next field

    Bob - Good morning, when I use the BeforeUpdate event I get the following error message.. "Run-time error: '2108' You must save the field before you execute the GoToControl function or the SetFocus method." Looks like a Catch-22 - any other ideas? Thx.
  16. P

    Setfocus tabs to the next field

    I will give it a try first thing Friday morning. Thx!
  17. P

    Setfocus tabs to the next field

    Hello, I have a Form with the following four fields - JPGA, JPGB, JPGC and JPGD. The tab sequence for these four fields is 1, 2, 3 and 4 respectively. I use the ‘AfterUpdate’ event procedure to do some data validation and when I find an error I want to be able to focus the cursor back to the...
  18. P

    How do I read a Table by the Primary Key?

    I will try this on Monday as it would be nice to get the SELECT statement working for future use. My Tables are not SQL tables, will that make a difference? I used to write programs in the ancient language of COBOL and we had two simple statements to read a file (table). One was a 'MOVE'...
  19. P

    How do I read a Table by the Primary Key?

    Kiwiman - AWESOME tip! The Dlookup works like a charm. Forget the SELECT statement, thanks again!
  20. P

    How do I read a Table by the Primary Key?

    Thanks but this did not work, there was no debug error but the Family name was not retrieved. For what its worth the following code works perfectly... Sciflat.MoveFirst Do Until Sciflat.EOF If Sciflat![Genus] = Me.LAGE Then If Sciflat![Species] = Me.LASP Then...
Back
Top Bottom