Visual Basic Tips
        
                - By Monzur Morshed

       How to Insert Animations :

On the toolbox, click the right portion of the mouse and select componenets.
On the components menu, select "Animated Gif Control" and Click on "OK". Now
you'll see a small icon labeled "GIF" in the toolbox. Click it and place it
in the Form and select any animated GIF File. After compiling the form, you'll
be able to see animations in your EXE file.

        How to Create Exit Buttons :

Click on "Command Button" from the toolbox and place it in the Form
(Size doesn't matter). Then write "Exit" or "Quit in the Caption. Double
click on the button to bring the code window. There type

Private Sub Command1_Click()
End
End Sub

You have successfully created an Exit Button.