Synchronized Scrolling between two forms

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

Guest

Does anyone kow how to synchronize scrolling between two or more forms?

I overlapped two subforms to appear as one but the scrolling is still
independent. I would like to hide one of the vertical scrollbars and control
both forms from other. Is this possible?
 
Let's see, you have two subforms, in datasheet view, I assume, and you want
them to scroll together. Why not just combine the data with a query and
use one subform (since you want them synchronized anyway)?

Damon
 
Actually they are in a tabular view. Each subform is built on a query which
allows me to add/delete/modify from the underlying tables (i.e. they cannot
be combined).
 
I see. then your options are limited. Combining scroll bars seems
un-doable, but I am not an MVP, so maybe someone knows another way. How
about making a temp table from the queries and using the temptable as a
recordsource for your form? Then you could edit the temp table and update
your other tables upon closing the form?

Damon
 
Back
Top