Results 1 to 4 of 4
  1. #1
    Desstro's Avatar
    Desstro is offline Competent Performer
    Windows XP Access 2010 (version 14.0)
    Join Date
    May 2010
    Posts
    185

    Question Form Properties

    All of a sudden, I can not in design view open the form properties or properties on any database. These are database that I have created and one in particular I havent put any code in yet to lock that stuff down.

    Seriously confused. Anybody run into this before and if so how do I fix it?

    Also I can not open the properties on a Brand new DB I just started..... now really confused.

  2. #2
    ajetrumpet is offline VIP
    Windows Vista Access 2007
    Join Date
    Mar 2010
    Location
    N/A
    Posts
    2,694
    Quote Originally Posted by Desstro View Post
    I can not in design view open the form properties or properties on any database.
    any details?

    you expect us to help you now that BP has been granted permission to start drilling in the ocean again?? LOL!

    I love it...

  3. #3
    Desstro's Avatar
    Desstro is offline Competent Performer
    Windows XP Access 2010 (version 14.0)
    Join Date
    May 2010
    Posts
    185
    Its funny that you keep referencing BP to my posts. I don't work for BP. I work for an inspection company subcontracted by BP. And I don't work in the Ocean.

    I did find on www.Access-Programmers.co.uk/ others who ran into the exact same problem. The solution didn't make much sense to me but it worked.

    "datAdrenaline" in Access-Programmers says
    The reason this happens is due typically do to the fact that the Property Sheet became part of the CommandBars collection in A2007. So if you have code that hides all your CommandBars, something like this ...

    Code:
    For each obj in CommandBars
    Obj.Enabled =False
    Next Obj
    So, EVERY time you start your app ... you will disable the property sheet.

    If you do this type of thing, I would suggest NOT doing it ... and instead specifically HIDE the CommandBars you don't want to have visible. Please do note that changing the visibility is different than enabling/disabling ... I typically prefer to change the visibility.

    Please note that in A97 and A2003, the "Property Sheet" was NOT stored in the CommandBars collection ... so ... this is not an issue in those versions.

    To remedy your immediate issue, with what I consider a much easier fix, just open the VBA editor ... get to the immediate window and type out the following ...

    CommandBars("Property Sheet").Enabled = True

    Then hit the enter key to execute the command ... you *should* then be able to view your property sheet as per norm.

    ...

    Hope this helps ... __________________
    Brent Spaulding | datAdrenaline |

  4. #4
    ajetrumpet is offline VIP
    Windows Vista Access 2007
    Join Date
    Mar 2010
    Location
    N/A
    Posts
    2,694
    the other reason I don't research a solution for you, which is very apparent now, is because most of the time I see that you solve it yourself before the answer is figured out here. and the post was not marked as solved?? A lot of times I wonder why you even post here. Obviously you have the talent to solve problems yourself.

    It's kind of a waste of time, ya know?? But congrats to you anyway.

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

Similar Threads

  1. Replies: 6
    Last Post: 02-10-2011, 09:58 AM
  2. Form Properties
    By mwabbe in forum Forms
    Replies: 3
    Last Post: 09-23-2010, 10:14 AM
  3. Nz() for properties instead of values
    By eww in forum Programming
    Replies: 4
    Last Post: 08-31-2010, 09:50 AM
  4. How to store inventory properties?
    By tuna in forum Database Design
    Replies: 1
    Last Post: 08-05-2010, 01:02 AM
  5. Displaying Query Properties in a Form
    By Bjar in forum Programming
    Replies: 1
    Last Post: 07-16-2008, 07:51 AM

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