T
tina
i don't think you can have two instances (not copies) of the same object
open at the same time. but you could decide on a maximum number of
simultaneous open secondary forms you want to offer to your users (2? 3?
5?), then create FormB to suit your needs, and then make copies of the form
object in the database window, with new names, such as FormB1, FormB2,
FormB3. you can write code in FormA to check and see if FormB1 is already
open, if it is then open FormB2, if FormB2 is already open then open FormB3,
etc. you can also write code to close each of the FormB's if they're open,
when you close FormA. suggest you also write some code to *disallow* opening
two secondard forms to display the same detail record(s).
hth
open at the same time. but you could decide on a maximum number of
simultaneous open secondary forms you want to offer to your users (2? 3?
5?), then create FormB to suit your needs, and then make copies of the form
object in the database window, with new names, such as FormB1, FormB2,
FormB3. you can write code in FormA to check and see if FormB1 is already
open, if it is then open FormB2, if FormB2 is already open then open FormB3,
etc. you can also write code to close each of the FormB's if they're open,
when you close FormA. suggest you also write some code to *disallow* opening
two secondard forms to display the same detail record(s).
hth