Access 2002 help trouble

L

logisys

When I press F1 in order to get help in a module a dark screen appear.
for example, I have the codes:

with rst
.edit
!job= 25
.update
end with
If I press F1 on .edit a gray screen appear.

please help me , thank you, HHiguera
 
A

Allen Browne

How did you declare rst at the top of this procedure?
There are 2 recordset objects - an ADO one, and a DAO one.
The help may not know which one to show.

You can probably solve this by disambiguating:
Dim rst As DAO.Recordset
 
Top