Userform in Access?

  • Thread starter Thread starter TNL
  • Start date Start date
T

TNL

Hi,
how can I create, use a userform in acess (2000)?
I can't find any documentation, I found only the syntax, i.e.
Load UserForm2
UserForm2.Show

Unload userform

Is userform a good feature in access?

Thanks
TNL
 
Hi,


You either use DoCmd.OpenForm if you have just one instance of the form to
open,

either use the object syntax:

Dim f As Form_UserForm2
Set f = New Form_UserForm2 ' instead of Load
f.Visible=True ' instead of show


The concept behind is that a form is an object as any other object, just
that is has some graphical elements ( and that it is a container ) that can
be displayed.



Hoping it may help,
Vanderghast, Access MVP
 
Back
Top