yes, with vb, we can create a movie player.
here, i create a movie player. we can change movie number.
it will play from the first movie and then go to next movie until the end.
click here to download full code and application.
have a nice day!
Thursday, November 13, 2008
Movie Player by vb
Diposting oleh adi_vb di 10:59 PM 0 komentar
Label: movie, movie player, player, vb movie
Tuesday, November 4, 2008
Make 'blinking' label or any object with vb
wanna make a blinking label or object?..?
with vb, its so easy....here is the way:
suppose object label1 will blinking, step:
1. Put label1 t the form, fill its caption with any title
2. Put Timer to the form, set its properties: Enabled=true, interval=100 (it means 100 millisecond)
3. Goto code editor by doubleclick Timer, write this code:
private sub Timer1_Timer()
label1.visible=not label1.visible 'this will blink label1 each 100ms
end sub
4. Finish...Run it!....
More timer programming in vb...try this...Create Own Splash Screen in VB
Splash Screen adalah tampilan awal yang biasanya muncul ketika suatu aplikasi dijalankan.
Splash Screen biasanya berisikan informasi umum atau hanya ucapan selamat datang.
Oke, bagaimana bikinnya?...gampang....
Klik disini untuk download. Source code lengkap!
Selamat berkarya....
Diposting oleh adi_vb di 4:42 PM 0 komentar
Label: screen, splash, splash screen, vb code