How To Make Animation With Visual Basic 6.0

Lesson 3 - Make Animation With Visual Basic 6.0


Ouke Guys ,.. Today we will make a Animation With Visual Basic 6.0, How ?


Lets Make it!

Step :
1. Open Your VB 6.0
2. We need "three different images", So... Prepare some pictures that will be the Animation.


Components Needed :
 - Form1
 - Three different images ( *.Jpg / *.Png )
 - Three Timer ( Timer1, Timer2, Timer3 )
 - Or what you want to add.












_________________________________________________________________________________
FORM PROPERTIES :
 - BorderStyle  : 1 - Fixed Single
 - Icon               : add your Icon

COMPONENT PROPERTIES :
 - Timer1, Timer2, Timer3 : Interval = 200
   Or You can Change the Speed, what ever you want, to slow down, could at intervals of  200+



_________________________________________________________________________________

3. you should combine your images, into one.



_________________________________________________________________

CODING : ^_^
4. Right-click Form1, and then you click on 'View Code'
or double-click Form1

- input this Code in Form1 :
private sub form_load()
Timer2.Enabled = False
Timer3.Enabled = False
end sub

- Double-click Timer1, and Input This Code on Timer1
Private Sub Timer1_Timer()
Picture3.visible = False
Picture1.Visible = True
Timer2.Enabled = True
Timer1.Enabled = False
End Sub

- Double-click Timer2, and Input This Code on Timer2
Private Sub Timer2_Timer()
Picture1.Visible = False
Picture2.Visible = True
Timer3.Enabled = True
Timer2.Enabled = False
End Sub
- Double-click Timer3, and Input This Code on Timer3

Private Sub Timer3_Timer()
Picture2.Visible = False
Picture3.Visible = True
Timer1.Enabled = True
Timer3.Enabled = False
End Sub


5. You Are Done... and Finished making .exe for this.

You can Download this Project & Code by VBRoom




You can Follow Tutorials by Watch Video Tutorials VBRoom on Youtube



May Helpful .... 
we can Learn Together,..

Best Wishes,
regards.


Tags : Animation, How To Make Animation With Visual Basic, Pictures Animation, Visual Basic 6.0, Visual, Basic, bagaimana cara membuat Animasi menggunakan Visual basic, belajar Visual basic, Basic Info, Tutorial Visual Basic, VB 6.0 VB 2010, Free Download Project Visual BAsic, Pemrograman dasar, Visual Studio,

download note
Link download in a picture Download button.
     * You Will be redirected to the site adf.ly
     wait 5 seconds until there is written SKIP AD at the top right of your monitor.
     click > SKIP AD < to continue.
 

Tested by: DindaPhobia
( in Windows XP SP3 - X-Gamer )
All software and applications as well any files on this site are based on experience and tried and Executed by the author,
in Windows XP

Please Trace / Copy - Paste my article if it can be beneficial, however if you do not mind
"DON'T FORGET TO INCLUDE CREDITS!!"
Thank you.
dp _

Related Post



1 comments:

Unknown said...

how to add 10 images in vb 6.0 useing timer

Post a Comment

Enter Your Comment For This Post.
Please Do not SPAM!