Re: Multiple Forms In Access
This works, but only if the form you are trying to create has it's HasModule property set to True, you don't even have to add a module.
public frm as Form
public frm2 as Form
public Function OpenForms()
set frm = new Form_frmSomeForm
frm.Visible = true
set frm2 = new Form_frmSomeForm
frm2.Visible = true
End Function
Tom Cannaerts
[email protected]
Programming today is a race between software engineers striving to build bigger and better idot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning -- Rich Cook
Re: Multiple Forms In Access
Thanks - everything is working now. Still taking me a while to get my head around this VB way of working (I want my C++ polymorphic behaviour back...)
Rob