Button to show all records on "Data Entry Form"

moi

Member
Local time
Today, 18:30
Joined
Jan 10, 2024
Messages
273
Good day,

How could I show all my records in my data entry form by clicking a button.. I tried "ShowAllRec" but it is not working (Invalid use of property)..

Thank you
 
Try:

Me.DataEntry=False
 
  • Like
Reactions: moi
How could I show all my records in my data entry form by clicking a button.. I tried "ShowAllRec" but it is not working (Invalid use of property)..
How many records can the user work with at any one time?
 
Good day,

How could I show all my records in my data entry form by clicking a button.. I tried "ShowAllRec" but it is not working (Invalid use of property)..

Thank you
Where did you find ShowAllRec ?
 
  • Like
Reactions: moi
@moi If your form is filtered, you need to remove the filter. If your form is bound to a query with a where clause, you need to provide a different search value.
 
  • Like
Reactions: moi
@moi If your form is filtered, you need to remove the filter. If your form is bound to a query with a where clause, you need to provide a different search value.
Hi pat, good day.
My form is bound to a table..
 
Hmm, when I try in the load event, the first I get with M.sh is .ShortcutMenu ? :unsure:
hi, i think i did not say that it is the first item.. it is there 3rd item on the list..

anyway thank you for picking up my post sir.. slowly am learning..
 

Attachments

  • Screenshot (95).png
    Screenshot (95).png
    11.3 KB · Views: 73
That is what I am saying. They are displayed in alphabetical order?
Here is mine. I do not even have that entry? I am on 2019 now,

1714215009932.png
 
As I understand it, intellisense shows User Defined Functions (UDF), and probably also user defined subs, in the current module. That suggests to me that what @moi's screenshot shows is actually a function in his module.
 
As I understand it, intellisense shows User Defined Functions (UDF), and probably also user defined subs, in the current module. That suggests to me that what @moi's screenshot shows is actually a function in his module.
Yes, the O/P seems to like creating functions instead of looking for using the Access functions.
 
If your form is bound to a table, it is already showing all the records. What did you do to make it not show all the records??????
 
  • Like
Reactions: moi
The OP seems to be confused between what is an ACCESS executable command and what is a defined control name on a form. I think they wanted to somehow execute a control name.
 
  • Like
Reactions: moi
If your form is bound to a table, it is already showing all the records. What did you do to make it not show all the records??????
I set it as a "data entry".. Reason for wanting to showallrecords is sometimes i need to browse the records..
 
A form in edit mode is still capapble of data entry using the button on the bottom of the form. You could also use your own button.
Data Entry property means you can only ever add records. The most misnamed property in Access. :(
1714290230634.png
 
  • Like
Reactions: moi

Users who are viewing this thread

Back
Top Bottom