PC Review


Reply
Thread Tools Rate Thread

How can i use Office Assistant and Balloons in 2007?

 
 
needurgenthelp
Guest
Posts: n/a
 
      4th Dec 2008
Hey folks, can anyone tell me how to re-activate the office assistant in
Excel 2007-I mean the Assistant has only been deprecated (hidden) so there
must be a way to 'unhide' that thing. Alternatively, can anyone shed any
light on what else can be used instead of balloons to let users make a
selection (i.e. chose printer) ?!?! Any help would be highly appreciated!!!!!
 
Reply With Quote
 
 
 
 
Tim Williams
Guest
Posts: n/a
 
      4th Dec 2008
The Assistant is gone from Office 2007: no getting it back...
http://en.wikipedia.org/wiki/Clippy


For choosing printer you could use a UserForm.
or
Application.Dialogs(xlDialogPrint).Show

Tim

"needurgenthelp" <(E-Mail Removed)> wrote in message
news:5F505FF3-A9F4-4435-B1EC-(E-Mail Removed)...
> Hey folks, can anyone tell me how to re-activate the office assistant in
> Excel 2007-I mean the Assistant has only been deprecated (hidden) so there
> must be a way to 'unhide' that thing. Alternatively, can anyone shed any
> light on what else can be used instead of balloons to let users make a
> selection (i.e. chose printer) ?!?! Any help would be highly
> appreciated!!!!!



 
Reply With Quote
 
needurgenthelp
Guest
Posts: n/a
 
      4th Dec 2008
Hi Tim,

thanks for that but it is not exactly what I'm looking for- i need something
that returns different values based on the user's decision similar to the
balloons on earlier excel versions

"Tim Williams" wrote:

> The Assistant is gone from Office 2007: no getting it back...
> http://en.wikipedia.org/wiki/Clippy
>
>
> For choosing printer you could use a UserForm.
> or
> Application.Dialogs(xlDialogPrint).Show
>
> Tim
>
> "needurgenthelp" <(E-Mail Removed)> wrote in message
> news:5F505FF3-A9F4-4435-B1EC-(E-Mail Removed)...
> > Hey folks, can anyone tell me how to re-activate the office assistant in
> > Excel 2007-I mean the Assistant has only been deprecated (hidden) so there
> > must be a way to 'unhide' that thing. Alternatively, can anyone shed any
> > light on what else can be used instead of balloons to let users make a
> > selection (i.e. chose printer) ?!?! Any help would be highly
> > appreciated!!!!!

>
>
>

 
Reply With Quote
 
vqthomf
Guest
Posts: n/a
 
      4th Dec 2008
Hi I use this
Public Function ErrAssistant(strError As String)
'
With Application.Assistant
.On = True
.Visible = True
.FileName = "Merlin.acs"
.Sounds = True
.Animation = msoAnimationBeginSpeaking
End With

Set bln = Application.Assistant.NewBalloon
With bln
.Heading = "VQ Error Reporting"
.Text = strError
.Show
End With
Application.Assistant.Visible = False
[A1].Select
End Function
Sub test()

With Application.Assistant
.FileName = "Merlin.acs"
.On = True
.Animation = msoAnimationGreeting
.AssistWithHelp = True
.GuessHelp = True
.FeatureTips = False
.Visible = True
End With

End Sub

Public Function myAssistant()
'
Dim bln
With Application.Assistant
.On = True
.Visible = True
.FileName = "Merlin.acs"
.Sounds = True
.Animation = msoAnimationBeginSpeaking
.Top = 650
.Left = 910
End With

Set bln = Application.Assistant.NewBalloon
With bln
.Heading = "PUR Menu"
.Text = "Link has been Re-established"

.Show
End With
Application.Assistant.Visible = False
End Function



"needurgenthelp" wrote:

> Hey folks, can anyone tell me how to re-activate the office assistant in
> Excel 2007-I mean the Assistant has only been deprecated (hidden) so there
> must be a way to 'unhide' that thing. Alternatively, can anyone shed any
> light on what else can be used instead of balloons to let users make a
> selection (i.e. chose printer) ?!?! Any help would be highly appreciated!!!!!

 
Reply With Quote
 
needurgenthelp
Guest
Posts: n/a
 
      4th Dec 2008
Hey mate, thanks! Unfortunatelly, it doesn't work or I'm doing something
wrong- it always comes up with

run-tine error' -2147467259(80004005)
Automation Error
Unspecified Error

any leads on that?!?!

Greets
Pat

"vqthomf" wrote:

> Hi I use this
> Public Function ErrAssistant(strError As String)
> '
> With Application.Assistant
> .On = True
> .Visible = True
> .FileName = "Merlin.acs"
> .Sounds = True
> .Animation = msoAnimationBeginSpeaking
> End With
>
> Set bln = Application.Assistant.NewBalloon
> With bln
> .Heading = "VQ Error Reporting"
> .Text = strError
> .Show
> End With
> Application.Assistant.Visible = False
> [A1].Select
> End Function
> Sub test()
>
> With Application.Assistant
> .FileName = "Merlin.acs"
> .On = True
> .Animation = msoAnimationGreeting
> .AssistWithHelp = True
> .GuessHelp = True
> .FeatureTips = False
> .Visible = True
> End With
>
> End Sub
>
> Public Function myAssistant()
> '
> Dim bln
> With Application.Assistant
> .On = True
> .Visible = True
> .FileName = "Merlin.acs"
> .Sounds = True
> .Animation = msoAnimationBeginSpeaking
> .Top = 650
> .Left = 910
> End With
>
> Set bln = Application.Assistant.NewBalloon
> With bln
> .Heading = "PUR Menu"
> .Text = "Link has been Re-established"
>
> .Show
> End With
> Application.Assistant.Visible = False
> End Function
>
>
>
> "needurgenthelp" wrote:
>
> > Hey folks, can anyone tell me how to re-activate the office assistant in
> > Excel 2007-I mean the Assistant has only been deprecated (hidden) so there
> > must be a way to 'unhide' that thing. Alternatively, can anyone shed any
> > light on what else can be used instead of balloons to let users make a
> > selection (i.e. chose printer) ?!?! Any help would be highly appreciated!!!!!

 
Reply With Quote
 
vqthomf
Guest
Posts: n/a
 
      4th Dec 2008
Hi if you search the help file for NewBalloon or Balloon you should get all
the help you need.
Regards

"needurgenthelp" wrote:

> Hey mate, thanks! Unfortunatelly, it doesn't work or I'm doing something
> wrong- it always comes up with
>
> run-tine error' -2147467259(80004005)
> Automation Error
> Unspecified Error
>
> any leads on that?!?!
>
> Greets
> Pat
>
> "vqthomf" wrote:
>
> > Hi I use this
> > Public Function ErrAssistant(strError As String)
> > '
> > With Application.Assistant
> > .On = True
> > .Visible = True
> > .FileName = "Merlin.acs"
> > .Sounds = True
> > .Animation = msoAnimationBeginSpeaking
> > End With
> >
> > Set bln = Application.Assistant.NewBalloon
> > With bln
> > .Heading = "VQ Error Reporting"
> > .Text = strError
> > .Show
> > End With
> > Application.Assistant.Visible = False
> > [A1].Select
> > End Function
> > Sub test()
> >
> > With Application.Assistant
> > .FileName = "Merlin.acs"
> > .On = True
> > .Animation = msoAnimationGreeting
> > .AssistWithHelp = True
> > .GuessHelp = True
> > .FeatureTips = False
> > .Visible = True
> > End With
> >
> > End Sub
> >
> > Public Function myAssistant()
> > '
> > Dim bln
> > With Application.Assistant
> > .On = True
> > .Visible = True
> > .FileName = "Merlin.acs"
> > .Sounds = True
> > .Animation = msoAnimationBeginSpeaking
> > .Top = 650
> > .Left = 910
> > End With
> >
> > Set bln = Application.Assistant.NewBalloon
> > With bln
> > .Heading = "PUR Menu"
> > .Text = "Link has been Re-established"
> >
> > .Show
> > End With
> > Application.Assistant.Visible = False
> > End Function
> >
> >
> >
> > "needurgenthelp" wrote:
> >
> > > Hey folks, can anyone tell me how to re-activate the office assistant in
> > > Excel 2007-I mean the Assistant has only been deprecated (hidden) so there
> > > must be a way to 'unhide' that thing. Alternatively, can anyone shed any
> > > light on what else can be used instead of balloons to let users make a
> > > selection (i.e. chose printer) ?!?! Any help would be highly appreciated!!!!!

 
Reply With Quote
 
vqthomf
Guest
Posts: n/a
 
      4th Dec 2008
I use this to show comments from a column in a listview when the record is
clicked.
Private Sub chkViewSIP_Click()
'

With Application.Assistant
.FileName = "Merlin.acs"
.FileName = "Merlin.acs"
.On = chkViewSIP.Value
.Animation = msoAnimationGreeting
.AssistWithHelp = True
.GuessHelp = True
.FeatureTips = False
.Visible = chkViewSIP.Value 'Put your text here
End With

End Sub
Try this

"needurgenthelp" wrote:

> Hey mate, thanks! Unfortunatelly, it doesn't work or I'm doing something
> wrong- it always comes up with
>
> run-tine error' -2147467259(80004005)
> Automation Error
> Unspecified Error
>
> any leads on that?!?!
>
> Greets
> Pat
>
> "vqthomf" wrote:
>
> > Hi I use this
> > Public Function ErrAssistant(strError As String)
> > '
> > With Application.Assistant
> > .On = True
> > .Visible = True
> > .FileName = "Merlin.acs"
> > .Sounds = True
> > .Animation = msoAnimationBeginSpeaking
> > End With
> >
> > Set bln = Application.Assistant.NewBalloon
> > With bln
> > .Heading = "VQ Error Reporting"
> > .Text = strError
> > .Show
> > End With
> > Application.Assistant.Visible = False
> > [A1].Select
> > End Function
> > Sub test()
> >
> > With Application.Assistant
> > .FileName = "Merlin.acs"
> > .On = True
> > .Animation = msoAnimationGreeting
> > .AssistWithHelp = True
> > .GuessHelp = True
> > .FeatureTips = False
> > .Visible = True
> > End With
> >
> > End Sub
> >
> > Public Function myAssistant()
> > '
> > Dim bln
> > With Application.Assistant
> > .On = True
> > .Visible = True
> > .FileName = "Merlin.acs"
> > .Sounds = True
> > .Animation = msoAnimationBeginSpeaking
> > .Top = 650
> > .Left = 910
> > End With
> >
> > Set bln = Application.Assistant.NewBalloon
> > With bln
> > .Heading = "PUR Menu"
> > .Text = "Link has been Re-established"
> >
> > .Show
> > End With
> > Application.Assistant.Visible = False
> > End Function
> >
> >
> >
> > "needurgenthelp" wrote:
> >
> > > Hey folks, can anyone tell me how to re-activate the office assistant in
> > > Excel 2007-I mean the Assistant has only been deprecated (hidden) so there
> > > must be a way to 'unhide' that thing. Alternatively, can anyone shed any
> > > light on what else can be used instead of balloons to let users make a
> > > selection (i.e. chose printer) ?!?! Any help would be highly appreciated!!!!!

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Outlook 2007 Out of Office Assistant - looks like Office 2003 KHolmstrom Microsoft Outlook Discussion 1 28th Dec 2009 10:55 PM
Office Assistant and Balloons needurgenthelp Microsoft Excel Misc 4 25th Aug 2009 07:10 PM
Out of Office Assistant in Office Outlook 2007! Susan Microsoft Outlook Discussion 1 28th Oct 2008 01:41 PM
Error_Out of Office Assistant in Office Outlook 2007! Susan Microsoft Outlook Discussion 0 28th Oct 2008 07:44 AM
Assistant Balloons hanging on jeffP Microsoft Excel Programming 2 22nd Jul 2004 02:59 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 09:46 PM.