+ Reply to Thread
Results 1 to 4 of 4

Animating a Menu Bar

Hybrid View

  1. #1
    Jan G. Thorstensen
    Guest

    Animating a Menu Bar

    Hi. I want to animate a menu bar that is floating in Excel and flies in from
    left to right.

    This is the code where I attemped to do it, but the screen isn't updated
    properly.
    How can I have a better visual look here. Thanks for helping.

    CODE SNIPPET:
    ------------------



    Sub MENU_Makro3()
    Dim myBar As CommandBar
    Dim i As Integer
    '
    Set myBar = CommandBars("My Menu")
    With myBar
    .Position = msoBarFloating
    .Top = 245
    ' Wants to animate the menu bar flying in from Left
    For i = 35 To 600
    .Left = i
    Next i
    End With
    ' Unfortuneately you can hardly se the Menu Bar moving. Why is that???
    End Sub


    Regards
    Jan



  2. #2
    Jim Rech
    Guest

    Re: Animating a Menu Bar

    This is better:

    Sub MENU_Makro3()
    Dim myBar As CommandBar
    Dim i As Integer
    Set myBar = CommandBars("My Menu")
    With myBar
    .Position = msoBarFloating
    .Top = 245
    DoEvents
    For i = 35 To 600
    .Left = i
    DoEvents
    Next i
    End With
    End Sub


    --
    Jim
    "Jan G. Thorstensen" <post@infosupport.no> wrote in message
    news:O5XfRyw1FHA.2964@TK2MSFTNGP09.phx.gbl...
    > Hi. I want to animate a menu bar that is floating in Excel and flies in
    > from left to right.
    >
    > This is the code where I attemped to do it, but the screen isn't updated
    > properly.
    > How can I have a better visual look here. Thanks for helping.
    >
    > CODE SNIPPET:
    > ------------------
    >
    >
    >
    > Sub MENU_Makro3()
    > Dim myBar As CommandBar
    > Dim i As Integer
    > '
    > Set myBar = CommandBars("My Menu")
    > With myBar
    > .Position = msoBarFloating
    > .Top = 245
    > ' Wants to animate the menu bar flying in from Left
    > For i = 35 To 600
    > .Left = i
    > Next i
    > End With
    > ' Unfortuneately you can hardly se the Menu Bar moving. Why is that???
    > End Sub
    >
    >
    > Regards
    > Jan
    >




  3. #3
    Jan G. Thorstensen
    Guest

    Re: Animating a Menu Bar

    Thanks a lot, Jim Rech. That did the trick!

    Jan



    "Jim Rech" <jrrech@hotmail.com> skrev i melding
    news:eSuWBlx1FHA.2132@TK2MSFTNGP15.phx.gbl...
    > This is better:
    >
    > Sub MENU_Makro3()
    > Dim myBar As CommandBar
    > Dim i As Integer
    > Set myBar = CommandBars("My Menu")
    > With myBar
    > .Position = msoBarFloating
    > .Top = 245
    > DoEvents
    > For i = 35 To 600
    > .Left = i
    > DoEvents
    > Next i
    > End With
    > End Sub
    >
    >
    > --
    > Jim
    > "Jan G. Thorstensen" <post@infosupport.no> wrote in message
    > news:O5XfRyw1FHA.2964@TK2MSFTNGP09.phx.gbl...
    >> Hi. I want to animate a menu bar that is floating in Excel and flies in
    >> from left to right.
    >>
    >> This is the code where I attemped to do it, but the screen isn't updated
    >> properly.
    >> How can I have a better visual look here. Thanks for helping.
    >>
    >> CODE SNIPPET:
    >> ------------------
    >>
    >>
    >>
    >> Sub MENU_Makro3()
    >> Dim myBar As CommandBar
    >> Dim i As Integer
    >> '
    >> Set myBar = CommandBars("My Menu")
    >> With myBar
    >> .Position = msoBarFloating
    >> .Top = 245
    >> ' Wants to animate the menu bar flying in from Left
    >> For i = 35 To 600
    >> .Left = i
    >> Next i
    >> End With
    >> ' Unfortuneately you can hardly se the Menu Bar moving. Why is that???
    >> End Sub
    >>
    >>
    >> Regards
    >> Jan
    >>

    >
    >




  4. #4
    jay@hagion.com
    Guest

    Re: Animating a Menu Bar

    I think your menu is just not having enough time to redraw itself.
    Play with the iPauseTime to adjust how fast the menu moves. I also
    added a Step in your For..Next statement that can adjust the speed of
    the animation.

    Sub MENU_Makro3()
    Dim myBar As CommandBar
    Dim i As Integer
    Dim iPauseTime
    Dim iStart

    iPauseTime = 0.01
    Set myBar = CommandBars("My Menu")
    With myBar
    .Position = msoBarFloating
    .Top = 245
    ' Wants to animate the menu bar flying in from Left

    For i = 35 To 600 Step 4
    iStart = Timer
    Do While Timer < iStart + iPauseTime
    DoEvents ' Yield to other processes.
    Loop
    .Left = i
    Next i
    End With
    End Sub
    > Regards
    > Jan



+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1