PDA

View Full Version : Office Assistant in Access



boneKrusher
03-28-2006, 08:35 AM
Hi all,

Does MS Access support MS office Assistant? I have the following code in an on open event but nothing happens...


Dim OptionChosen As Integer
With Assistant
.Visible = True
.Animation = msoAnimationAppear
With .NewBalloon
.Heading = "The Databases will be down for maintenance on Friday march 31st"
.Text = "Select an option"
.Labels(1).Text = "OK"
.Labels(2).Text = "super"
.Mode = msoModeModal
OptionChosen = .Show
End With
End With
End Sub

Thanks

boneKrusher
03-28-2006, 09:15 AM
ahhhh. I had the office assistant off in my help menu....Duh!