open same form in mulitiples windows

S

simon

hi,
I have a datasheet on each time that i double click a row I want to open
the same form name in new window this will help to compare the details of
each row.
thanks
 
A

Allen Browne

If you are comfortable with VBA code, you can use the New keyword to open
multiple instances of the same form.

While that's not difficult, the challenge comes in managing the different
instances independently of each other. We generally use a custom collection
to do that. For details, see:
Managing Multiple Instances of a Form
at:
http://allenbrowne.com/ser-35.html
 
Top