Is there an event tied to the selection of a record in an Access T

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to tie an event procedure to the selection of a record in a
table? I'd like to have the ability to synch a form to the selection of an
item in an access table in it's native form.

I'm interested if this is possilbe by clicking on the record selector or on
a particular field.
 
You can do this in a form with the OnCurrent event. Since you can make a
form basically look like the original table by using the datasheet format,
this could work if there isn't any special reason you need to open the table.
 
There are no events tied to tables. Having users select data directly from
the table is not a very good idea. You loose all security an data entegrity
doing this.

There is not even a way for your application to know which record you have
seleted in a table. Access applications know nothing of tables until they
have been opened as a recordset.

What is it you are trying to do? There may be a better way.
 
Back
Top