CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Nov 1998
    Posts
    1

    How to make a form unload/hide in another fancy way?



    When showing a form, I'd like it appear like "sliding"

    (or from small dot to full-size form, I mean like in Excel spreadsheet way)

    And when hiding/unloading a form, i'd like it work

    in a reverse way.(from full-size form to small)

    How can I do that?




  2. #2
    Join Date
    Apr 1999
    Posts
    5

    Re: How to make a form unload/hide in another fancy way?



    Try using the timer control and calling the Form's Move method. Each time the Timer1_Timer event handler is called you can change the form's size and position.

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

Featured