Office Assistant Question

L

Les Stout

Hi all, is it possible to use the office assistant as a "Fancy textbox"
?

Les Stout
 
B

Bob Phillips

Les,

I can't say I really understand what you are asking, but most people that I
know turn the office assistant off, it is just too annoying.

Would a custom userform do what you want?

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)
 
L

Les Stout

I think it must be the jovial festive season.. Was just wondering if one
could use the wizard like a pop up message with the animations...and
upon clicking ok that it just hide's again..

Les Stout
 
L

Les Stout

I think it must be the jovial festive season.. Was just wondering if one
could use the wizard like a pop up message with the animations...and
upon clicking ok that it just hide's again... I do not want to use it
for help at all, just call it like you would a text box for info...

Les Stout
 
M

MichDenis

Try This :

'----------------------------
Sub YesNo()
Assistant.Sounds = True
Assistant.On = True
With Assistant.NewBalloon
..Animation = 112
..BalloonType = 1
..Button = 4
..Heading = "Save" & vbLf & "Your modifications ?"
..Icon = 6
..Mode = 0
If .Show = -3 Then MsgBox "Ok for jovial festive season!", 64
End With
Assistant.On = False
End Sub
'----------------------------




"Les Stout" <[email protected]> a écrit dans le message de uat%[email protected]...
I think it must be the jovial festive season.. Was just wondering if one
could use the wizard like a pop up message with the animations...and
upon clicking ok that it just hide's again... I do not want to use it
for help at all, just call it like you would a text box for info...

Les Stout
 

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

Similar Threads


Top