Table view to Form view

  • Thread starter Thread starter Ted Cummings
  • Start date Start date
T

Ted Cummings

Hi,
Is there any way I can select a specific record in Table view
and automatically have the Form view open at the same record?
TIA.
 
No. Why are you using table view at all ? You can easily do this with two
Forms, one set to datasheet view, and one to single record. Then selecting
a record in datasheet view can select the same record in the other form (
and vice-versa ) Look at the linked forms example the wizard creates for
you.

--
Regards,

Adrian Jansen
J & K MicroSystems
Microcomputer solutions for industrial control
 
Hi,
Is there any way I can select a specific record in Table view
and automatically have the Form view open at the same record?
TIA.

No. Table datasheets don't have any usable events.

If you create a (continuous) Form based on your table, you can pop up
another form in (for example) the DoubleClick event of a textbox on
the form, using the current record to provide criteria for the Filter
property of the OpenForm method.
 
Back
Top