Creating a button that opens a wizard!

A

Andrew

I was just wondering, if there is a way that i can create a command button in
a form that opens a wizard, for example; butten name= "Create new Form"
Action ="Open the Create new Form Wizard". So far, i can only open existing
data through a form.

thx
 
T

Tony Toews [MVP]

Andrew said:
I was just wondering, if there is a way that i can create a command button in
a form that opens a wizard, for example; butten name= "Create new Form"
Action ="Open the Create new Form Wizard". So far, i can only open existing
data through a form.

Why would you want to do this?

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
Tony's Microsoft Access Blog - http://msmvps.com/blogs/access/
 
A

AnandaSim

I was just wondering, if there is a way that i can create a command button in
a form that opens a wizard, for example; butten name= "Create new Form"
Action ="Open the Create new Form Wizard". So far, i can only open existing
data through a form.

thx

Usually those Wizards are for developer (author/architect/whatever)
use. We don't normally expect our end users to be running those
Wizards. The wizards used to be written in VBA and placed in a secured
add-in. To launch those Wizards, you would need to write VBA and make
a call to the Wizard's entrypoint. What version of Access are you
running?
 
A

Andrew

Im trying to make the database more user friendly, so i can have everything
in the database accessable from the main title form.
 
T

Tony Toews [MVP]

Andrew said:
Im trying to make the database more user friendly, so i can have everything
in the database accessable from the main title form.

But you don't need to use the MS supplied wizards for that purpose.

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
Tony's Microsoft Access Blog - http://msmvps.com/blogs/access/
 
S

scubadiver

I think you are setting yourself up some headaches if you allow users to
create their own forms.
 
A

Andrew

yea lol i realize that now, though is there a way i can do the same thing
with reports?
 
B

banty

Im trying to make the database more user friendly, so i can have everything
in the database accessable from the main title form.
 
B

banty

Im running 2000
--
AC


AnandaSim said:
Usually those Wizards are for developer (author/architect/whatever)
use. We don't normally expect our end users to be running those
Wizards. The wizards used to be written in VBA and placed in a secured
add-in. To launch those Wizards, you would need to write VBA and make
a call to the Wizard's entrypoint. What version of Access are you
running?
 
R

Rick Brandt

banty said:
Im trying to make the database more user friendly, so i can have
everything in the database accessable from the main title form.

But "users" should not be making new forms, so why would they need the form
wizard?

Anyway, have you tried...

DoCmd.RunCommand acCmdNewObjectForm
 

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