Form property cannot open

sall

New member
Local time
Today, 14:04
Joined
Mar 29, 2021
Messages
2
I am developing a database, but come observe that the form property is not active.
whenever I a field in form design view, the property of that field is not shown.
please I need an help very urgently. I have asked in other forum, but nothing positive comes up.
Will appreciate any help from this forum.
 
Welcome to the forums! We are the most active Microsoft Access community on the internet by far, with posts going back over 20 years!

To get started, I highly recommend you read the post below. It contains important information for all new users to this forum. https://www.access-programmers.co.uk/forums/threads/new-member-read-me-first.223250/ We look forward to having you around here, learning stuff and having fun!
 
First and foremost, welcome to Access World Forums.

Second, I am going to move your question to the Forms category, as It appears that is the nature of the question.
 
Now, as to your question: A word was left out and thus it is not clear from the brief description you gave. Please take your time to explain what you did, what you saw, and what you expected but did NOT see. We will be happy to help but need a little bit more to diagnose the issue.
 
Some properties are only available if you explicitly create them. How are you trying to access/use the property. Just error trap it?
This sort of thing will report the problem, if the property does not exist.

Code:
on error goto fail
msgbox me.properties("somepropery")
...
exit sub

fail:
   msgbox "Error: " & err & "  Desc: " & err.description
 
just a guess but in form design view -perhaps you need to click the properties option on the ribbon to display the properties window?
 

Users who are viewing this thread

Back
Top Bottom