Results 1 to 11 of 11

Thread: Rectangle animation

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Jul 2006
    Posts
    219

    Exclamation Rectangle animation

    On older Mac OSes,when you double clicked a folder,program,file,a rectangle animation would come up and then show a window.
    So in my program I want a rectangle animation to pop up from a button and show a form.I have a series of images ready so can you help me please?

  2. #2
    PowerPoster sparrow1's Avatar
    Join Date
    May 2005
    Location
    Globetrotter
    Posts
    2,820

    Re: Rectangle animation

    Quote Originally Posted by Louix
    On older Mac OSes,when you double clicked a folder,program,file,a rectangle animation would come up and then show a window.
    So in my program I want a rectangle animation to pop up from a button and show a form.I have a series of images ready so can you help me please?
    Hi,

    Create a second form, for example Form2 and then use this code in form1
    with a button1:

    VB Code:
    1. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    2.         Dim Form2 As New Form2
    3.         Form2.Show()
    4.     End Sub

    Wkr,

    sparrow1
    Wkr,
    sparrow1

    If I helped you, don't forget to Rate my post. Thank you

    I'm using Visual Studio.Net 2003 and
    2005
    How to learn VB.Net Create setup with VB 2005 Drawing for beginners VB.Net Tutorials GDI+ Tutorials
    Video's for beginners

  3. #3

    Thread Starter
    Addicted Member
    Join Date
    Jul 2006
    Posts
    219

    Re: Rectangle animation

    I know this. what i want is the rectangle animation.
    how do i do it?

  4. #4

    Thread Starter
    Addicted Member
    Join Date
    Jul 2006
    Posts
    219

    Re: Rectangle animation

    anyone?

  5. #5
    Raging swede Atheist's Avatar
    Join Date
    Aug 2005
    Location
    Sweden
    Posts
    8,018

    Re: Rectangle animation

    Are you going to draw this animation on an existing form?
    Rate posts that helped you. I do not reply to PM's with coding questions.
    How to Get Your Questions Answered
    Current project: tunaOS
    Me on.. BitBucket, Google Code, Github (pretty empty)

  6. #6
    I'm about to be a PowerPoster! kleinma's Avatar
    Join Date
    Nov 2001
    Location
    NJ - USA (Near NYC)
    Posts
    23,373

    Re: Rectangle animation

    what you are talking about is a function of the MacOS.. much like the way vista has lots of built in "eye candy" with forms now.

    You could write this code functionality, but you would have to test it under different operating systems, to see how it looked.

    For example, if you implemented something like what you are talking about, how would it look on vista? would you get the custom programmed effect, plus the effects the vista OS already has? Would that look good or really crappy?

  7. #7

    Thread Starter
    Addicted Member
    Join Date
    Jul 2006
    Posts
    219

    Re: Rectangle animation

    I only plan to run it under windows.

  8. #8
    I'm about to be a PowerPoster! kleinma's Avatar
    Join Date
    Nov 2001
    Location
    NJ - USA (Near NYC)
    Posts
    23,373

    Re: Rectangle animation

    Vista is windows

    Infact .NET apps can ONLY be run on windows

  9. #9

    Thread Starter
    Addicted Member
    Join Date
    Jul 2006
    Posts
    219

    Re: Rectangle animation

    ok i only plan to run it under xp

  10. #10
    PowerPoster sparrow1's Avatar
    Join Date
    May 2005
    Location
    Globetrotter
    Posts
    2,820

    Re: Rectangle animation

    Hi,

    You could read this 'Animation Overview', here's the link;

    http://msdn2.microsoft.com/en-us/library/bb188569.aspx

    Hope it helps,

    sparrow1
    Wkr,
    sparrow1

    If I helped you, don't forget to Rate my post. Thank you

    I'm using Visual Studio.Net 2003 and
    2005
    How to learn VB.Net Create setup with VB 2005 Drawing for beginners VB.Net Tutorials GDI+ Tutorials
    Video's for beginners

  11. #11

    Thread Starter
    Addicted Member
    Join Date
    Jul 2006
    Posts
    219

    Re: Rectangle animation

    That was in XAML not VB but thanks for looking

Posting Permissions

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



Click Here to Expand Forum to Full Width