slamet Harto
11-13-2008, 12:31 AM
Hi there,
I would to show the office assistance for user that using my program/application. The office assistance will help them to go to the next step in the application.
Is there a way to auto install office assistance (it's like a clip). The following code is running well if the office assistance is installed.
I've tried this vba code, but I need to go to the office assistance menu button on Menubar and clicking it to install manually.
Now, I need your advice to push auto install for office assistance thru vba.
Many thanks in advance.
Rgds, Harto
Note: (2003 version)
Private Sub CommandButton1_Click()
Application.Assistant.Visible = True
With Application.Assistant.NewBalloon
.Heading = "Hi... "
.Text = "Please go to the next button!"
.Show
End With
End Sub
I would to show the office assistance for user that using my program/application. The office assistance will help them to go to the next step in the application.
Is there a way to auto install office assistance (it's like a clip). The following code is running well if the office assistance is installed.
I've tried this vba code, but I need to go to the office assistance menu button on Menubar and clicking it to install manually.
Now, I need your advice to push auto install for office assistance thru vba.
Many thanks in advance.
Rgds, Harto
Note: (2003 version)
Private Sub CommandButton1_Click()
Application.Assistant.Visible = True
With Application.Assistant.NewBalloon
.Heading = "Hi... "
.Text = "Please go to the next button!"
.Show
End With
End Sub