Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to Hide the Ask a Question Box

Status
Not open for further replies.

Dina01

Programmer
Mar 26, 2002
204
CA
Hello,
I created a program, in accessXP and I would like to hide the "How to Hide the Ask a Question Box" but I need to code this in my code, therefore I don't have to manually remove it from everyone PC, since it is a multi-user database.

Those anyone know how to do this with coding.

These are the steps to do it manually by Microsoft

How to Hide the Ask a Question Box
To hide the Ask a Question box, follow these steps:
In the Office program that you are using, click Customize on the Tools menu.
Right-click the Ask a Question box. Click to clear the Show Ask a Question Box check box.
In the Customize dialog box, click Close.


********
I think it's something likw this

Application.SetOption "ShowAskAQuestionBox", False


Thanks

 
I don't have Access XP, but since you're on page 2 without an answer, I'll venture this:

If you think that
[tt]
Application.SetOption "ShowAskAQuestionBox", False
[/tt]

is close, then try changing it too:
[tt]
Application.SetOption "ShowAskAQuestionBox" = False
[/tt]

Just a shot...



Gus Brunston [glasses] An old PICKer, using Access2000
[tt]Want solutions you can understand?
Post understandable questions.
[/tt]
 
I tried that but still didn't work.

Any more clue
 
[tt]
Hi, again:

In Access 2000, there would be spaces in between the words of the option (and the comma, not equal sign):

Application.SetOption "Show Status Bar", True


Just another shot. Gus Brunston [glasses] An old PICKer, using Access2000
[tt]Want solutions you can understand?
Post understandable questions.
[/tt]
 
Hello Gus,

That still dind't work. By the way I have AccessXP
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top