Nirav said:
Hi All,
I am new use of access and first time created form using text boxes and
combo boxes. I am now ready to enter data but it does not allow me to do
that. Arrow and astrick at the bottom are not popping up and so need
urgent
help.
"Astrick"? Do you mean "asterisk"? I'm not sure what you mean by "not
popping up". If they don't appear at all, make sure you have the form's
Navigation Buttons property set to Yes. If you mean that the "new record"
button is disabled ("greyed out" and unclickable), then your form is not
allowing additions. This could be for any of the following reasons:
1. The form's AllowAdditions property is set to No. If that's the problem,
set it to Yes.
2. The database file is read-only, either directly or because it's in a
folder to which you don't have write access. This is unlikely, though, if
you created the database there.
3, The form is unbound -- that is, it is not based on any table or query, so
it has no power to navigate among records or create a new record.
4. The form is bound, but its record source is not updatable. This is the
most likely cause. If you created the form from fields of multiple tables,
then Access will have created a query to be the form's recordsource, and not
all queries are updatable. Please post the contents of the form's Record
Source property. It may be an SQL statement, or it may be the name of a
stored query. If it's the name of a stored query, please post the SQL View
of that query. Given the SQL, we should be able to see why it is not
updatable.