How to programmatically disable the Office Assistant using VBA?

H

Hazel O'Sullivan

Hi

Would any one know how to programmatically(using VBA) disable the Office Assistant in Access but not disable it in the other Office applications? i.e Office Assiatant is visible when working in Excel but not visible when working in Access

Please any ideas I'm out of them

Thank
Hazel O'Sullivan
 
G

Galin Iliev

use this

set AccessApp = CreateObject("Access.Application")

AccessApp.Assistant.Visible = false

Galin Iliev
MCSD

Hazel O'Sullivan said:
Hi,

Would any one know how to programmatically(using VBA) disable the Office
Assistant in Access but not disable it in the other Office applications?
i.e Office Assiatant is visible when working in Excel but not visible when
working in Access.
 
P

Peter Hewett

Hi Hazel O'Sullivan

I get around this little "problem" but not installing the sucker in the first place.

HTH + Cheers - Peter
 
O

Orthner, Kerri

is there a lost focus event for the application to turn it on and then a got forcus event to turn it off, it being the assistant???
 

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