Consulting

Results 1 to 2 of 2

Thread: Office Assistant in Access

  1. #1

    Office Assistant in Access

    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
    Last edited by boneKrusher; 03-28-2006 at 09:15 AM.

  2. #2
    ahhhh. I had the office assistant off in my help menu....Duh!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •