Macros

E

Eric

How can i create a form which has 3 tabs one shows all the forms,
second shows all the reports and third shows all the queries

Thanks
 
J

John W. Vinson

How can i create a form which has 3 tabs one shows all the forms,
second shows all the reports and third shows all the queries

Thanks

No macro would be needed (you could use macros if you wanted, but they're not
*needed*).

I'd create a Table with at least three fields - the actual Name property of
the form or report (e.g. frmClientEntry); a human-meaningful name for that
object (Client Data Entry Screen, say); and a field indicating the nature of
the object for your code. You could display the contents of this table in
Listboxes on tab pages on your form, and put code (or a macro) in the
DoubleClick event of the listbox to launch the form or report.

As a rule, I'll never let users see Queries directly, but you could add them
to the listbox as well if you insist.
--

John W. Vinson [MVP]
Microsoft's replacements for these newsgroups:
http://social.msdn.microsoft.com/Forums/en-US/accessdev/
http://social.answers.microsoft.com/Forums/en-US/addbuz/
and see also http://www.utteraccess.com
 

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

Top