Current Form name

  • Thread starter Thread starter Tom
  • Start date Start date
T

Tom

Using Access 2002 how can I get the current form name using vb?

Many Thanks

Tom
 
If the code is in the form's module:
Me.Name

If not, presumably you are referring to the form that has focus, so:
Screen.ActiveForm.Name
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top