Splash Screen with Progress Bar- % Completed While Loading a Page - Visual Basic 6.0 tutorial

  Рет қаралды 160,577

Sandeep Kaundal

Sandeep Kaundal

Күн бұрын

Splash Screen with Progress Bar (Loading Page)Visual Basic 6.0-Quick and easy- Progress bar tutorial in visual basic 6
Tutorial is mainly focused on the following points.
1.How you can create a splash Screen.
2.How you can add progress Bar to your form using advanced controls.
3.Above the progress Bar, We can also show "Loading" Label along with progress meter that starts from 0% and end at 100%.
When loading is completed, immediately Welcome /Main Page appears on the screen.
All Steps are self explanatory and easy.
Every one can create such splash screen with progress Bar.
for your little help am attaching the code for your reference.
VB Code:
Option Explicit
Private Sub Form_Load()
Timer1.Enabled = True
End Sub
Private Sub Timer1_Timer()
ProgressBar1.Value = ProgressBar1.Value + 5
Label1.Caption = "Loading....."
Label5.Caption = ProgressBar1.Value & "%"
If (ProgressBar1.Value = ProgressBar1.Max) Then
Timer1.Enabled = False
Unload Me
Form2.Show
End If
End Sub
_____________________________________________________________
Here is my updated List of Tutorials.
_____________________________________________________________
Create and store data in Microsoft Excel Sheet using visual basic • Learn Visual Basic | C...
Search records in listview control • Learn visual basic 6 |...
Create and Display Popup menu in Visual Studio • Learn Visual Basic 6 |...
Search Records between Two dates using DataGrid • Search Records between...
How to Connect Listview with Database and Load data into Listview • How to Connect Listvie...
Add Delete Search and Sort Listitems in Listview control • Visual Basic 6 tutoria...
How to Reset Forgotten Password by User Verification in Visual Basic 6.0 • Login system in Visual...
How to Connect Datagrid control with Access database without VB6 ADODC
• How to Connect Datagri...
How to Make installer for Visual Basic Database
• Visual Basic Tutorial ...
ImageCombo and ImageList-Display Image with Combo items in Combobox • Visual Basic Tutorial:...
Create Save Update Delete and Search Student Profile Using Visual Basic/Ms Access-Step by Step • Create Save Update Del...
Advance Login System (Splash Screen with Progress Bar,User Registration,Login system,Welcome ) • Advanced Login and Re...
Add Delete Update Search Records • Add Delete Update Sear...
How to Print Data Report in VB6 • Visual Basic tutorial-...
How to Use Data Manager in VB6 • Learn Visual Basic -Vi...
Create Tool Bar,Status Bar and Menu Bar • Create Tool Bar,Status...
Common dialog control- Font and Color Dialog • How to use Common dial...
Search Records in Database (By Name or ID) • Search Records in Data...
Login Form using Visual Basic 6.0 • Login Form using Visua...
Add Delete Update and Clear records • Add,Update,Delete and ...
Simple Visual Basic Database Application • Simple Visual Basic Da...
Design Font Dialog Box in VB 6 • Learn Visual Basic 6.0...
Road Traffic lights Animated system • Learn Visual Basic 6.0...
ListBox Control( Advanced) • Learn Visual Basic 6....
ListBox Control -Add,Delete and Clear items • Learn Visual Basic 6....
Custom Progress Bar with percentage completed on Splash Screen • Custom Progress Bar wi...
Frame Control,Check Box and Option Buttons • Learn Visual Basic 6.0...
Picture Viewer+Browser in Visual Basic • Picture Viewer+Browser...
Splash Screen with Progress Bar- • Splash Screen with Pro...
Create Menus,Drop Down Menus ,Nested menus in Menu Bar • Create Menus,Drop Down...
for more Visual Basic tutorials,please visit
KZbin Channel: / sandydehrian
Computer Gyan Blog:selfcomputerlea...

Пікірлер: 80
@neharenge2640
@neharenge2640 5 жыл бұрын
Thanks sir When I did it , it's successfully run , excellent video
@vishaljoshi1977
@vishaljoshi1977 2 жыл бұрын
Thanks Sir its very uesfull video to creat saplashscreen form thnaks a lot again
@SandeepKaundalSir
@SandeepKaundalSir 2 жыл бұрын
Thanks 🙏.check my other videos too
@ntcepicreply5993
@ntcepicreply5993 5 жыл бұрын
Thankyou sir ji... It's Helpful video 👍👍🙏
@artiupadhyay7100
@artiupadhyay7100 2 жыл бұрын
Thanks alot sir..your video is so helpful...🙏🏻
@SandeepKaundalSir
@SandeepKaundalSir 2 жыл бұрын
You are most welcome 🙂.check my other videos too.
@addadd8784
@addadd8784 2 жыл бұрын
thank you very much
@SandeepKaundalSir
@SandeepKaundalSir 2 жыл бұрын
You are welcome.please share my videos,:-)
@b.k.ravishankar1971
@b.k.ravishankar1971 6 ай бұрын
Super sir 🙏
@SandeepKaundalSir
@SandeepKaundalSir 6 ай бұрын
Thanks buddy
@Den-r
@Den-r 2 жыл бұрын
thanks it works well.
@SandeepKaundalSir
@SandeepKaundalSir 2 жыл бұрын
Thanks for your valuable comment
@SandeepKaundalSir
@SandeepKaundalSir 9 жыл бұрын
Splash Screen with Progress Bar (Loading Page)Visual Basic 6.0-Quick and easy Tutorial is mainly focused on the following points. 1.How you can create a splash Screen. 2.How you can add progress Bar to your form using advanced controls. 3.Above the progress Bar, We can also show "Loading" Label along with progress meter that starts from 0% and end at 100%. When loading is completed, immediately Welcome /Main Page appears on the screen. All Steps are self explanatory and easy. Every one can create such splash screen with progress Bar. for your little help am attaching the code for your reference. VB Code: Option Explicit Private Sub Form_Load() Timer1.Enabled = True End Sub Private Sub Timer1_Timer() ProgressBar1.Value = ProgressBar1.Value + 5 Label1.Caption = "Loading....." Label5.Caption = ProgressBar1.Value & "%" If (ProgressBar1.Value = ProgressBar1.Max) Then Timer1.Enabled = False Unload Me Form2.Show End If End Sub
@xWolfyz
@xWolfyz 7 жыл бұрын
Very Helpful Sir, have a good day.
@SandeepKaundalSir
@SandeepKaundalSir 7 жыл бұрын
I am glad that it is working fine for you... Check my other videos too... I hope you will find this useful.
@SandeepKaundalSir
@SandeepKaundalSir 9 жыл бұрын
Splash Screen with Progress Bar (Loading Page)Visual Basic 6.0-Quick and easy Tutorial is mainly focused on the following points. 1.How you can create a splash Screen. 2.How you can add progress Bar to your form using advanced controls. 3.Above the progress Bar, We can also show "Loading" Label along with progress meter that starts from 0% and end at 100%. When loading is completed, immediately Welcome /Main Page appears on the screen. All Steps are self explanatory and easy. Every one can create such splash screen with progress Bar. #VisualBasic #programming #programmer #microsoft #VB
@jitingeorge6484
@jitingeorge6484 6 жыл бұрын
Sandeep Kaundal can u send me the vb6 software.. My software does not habe a date picker... Windows 7 64bit
@SukhaRehal1313
@SukhaRehal1313 8 жыл бұрын
hi sandeep ji you tutorials are essay to understand it helps me to making a project in vb 6.0 thanks
@SandeepKaundalSir
@SandeepKaundalSir 8 жыл бұрын
You are Welcome Mr Rehal Ji. Keep learning and sharing
@tanmaykumar5650
@tanmaykumar5650 8 жыл бұрын
Thank you sir for your awesome videos, they are easy to understand even though there is no audio :) Now I started to watch your videos regularly. Just a question "ProgressBar1.Value = ProgressBar1.Value + 5" In the above line what is the use of "+5" and why I am getting errors if I change the value ?
@SandeepKaundalSir
@SandeepKaundalSir 8 жыл бұрын
Thank you Tanmay for such inspiring words. This statement works like a counter.In the above statement ,code will add 5 to current value of the progress bar (Initial value of progress bar is 0 as it is set by Min property)...progress bar is filled up by incremented value by 5 upto 100.Example 5,10,15,20,25......100. You can change value as per ur convenience.You can set to 2,4,8,10 or any number in place of 5. Value property of the progress bar determines how much of the control has been filled. for showing the progress in the operation,value property is incremented continuously till its Max value.Max value is determined by MAX property of the progress bar.by default ,Max property is 100 and Min Property is 0 . Progress Bar's Value property will be incremented up to 100 (As Max property is set to 100).
@tanmaykumar5650
@tanmaykumar5650 8 жыл бұрын
Thank you sir , Now I got it. Please make more videos so we can learn with ease :)
@SandeepKaundalSir
@SandeepKaundalSir 8 жыл бұрын
Definitely,I am creating more videos .simple and easy
@shanmugakumar5798
@shanmugakumar5798 3 жыл бұрын
Tq sir
@SandeepKaundalSir
@SandeepKaundalSir 3 жыл бұрын
You are welcome. Check my other videos too.
@theslavserb8956
@theslavserb8956 8 жыл бұрын
awesome dude, i slightly edited your code so that when a part of my app is initalized it adds a small percentage to the bar, when all of them have fully initialized then it can launch
@SandeepKaundalSir
@SandeepKaundalSir 8 жыл бұрын
Great !!! .... Keep on learning and sharinggg...
@oonyuali7530
@oonyuali7530 7 жыл бұрын
please send me that code. oonyuali@gmail.com
@asifullahdaudzai738
@asifullahdaudzai738 8 жыл бұрын
Thanks For such a Good Info
@SandeepKaundalSir
@SandeepKaundalSir 8 жыл бұрын
+Asif Ullah ..Watch my other latest tutorials too..
@koelmahata8425
@koelmahata8425 7 жыл бұрын
thank you sir.it helped me a lot
@SandeepKaundalSir
@SandeepKaundalSir 7 жыл бұрын
I am glad to hear this. Check my latest videos as well. You will find my other YT videos useful.
@penggunaphp7297
@penggunaphp7297 9 жыл бұрын
How to implement it to real loading time of application? I think i don't need progress bar if i use only loop....
@JGBURGUITE
@JGBURGUITE Жыл бұрын
how to sort data by number of delimiter?+progressbar
@visclo_king4890
@visclo_king4890 3 жыл бұрын
Thanks sir. i have tried to reproduce it but i don't know how to get the Timer.
@SandeepKaundalSir
@SandeepKaundalSir 3 жыл бұрын
Timer control is available in vb toolbox with a clock symbol.check and drag it to your form for use.
@visclo_king4890
@visclo_king4890 3 жыл бұрын
@@SandeepKaundalSir thank you for the answer but it seems like the timer control is not available in my vb toolbox.
@muhammadafzal237
@muhammadafzal237 5 жыл бұрын
Great!
@qbinhyoutebehome
@qbinhyoutebehome 7 жыл бұрын
i love it..
@educationhub8241
@educationhub8241 6 жыл бұрын
sir in vb6 lavel.caption is not working in progressbar programme what to do
@happychuckprogramming6048
@happychuckprogramming6048 5 жыл бұрын
nice one, amazing.. I also have a video on creating splash screens (in python pygame) though.. good.
@n1lknarf
@n1lknarf 4 жыл бұрын
How could I implement this with unreal engine?
@1cloud5
@1cloud5 8 жыл бұрын
how do you get it to restart when its below max value?
@martinalebachew4730
@martinalebachew4730 8 жыл бұрын
What is your visual studio version?
@sushmitadewangan9553
@sushmitadewangan9553 5 жыл бұрын
Plzz sir payroll management system pr video bnaiye na plzz
@sivadharshan1235
@sivadharshan1235 8 жыл бұрын
very good
@SandeepKaundalSir
@SandeepKaundalSir 8 жыл бұрын
+vimal sarvesh thank you !!!
@HasanthaKariyawasam
@HasanthaKariyawasam 9 жыл бұрын
it good...
@SandeepKaundalSir
@SandeepKaundalSir 8 жыл бұрын
+Hasantha Kariyawasam Thanks... See my other video tutorials on youtube
@tronerz24t2
@tronerz24t2 8 жыл бұрын
this code still applicable in 2010?
@htoomaw1547
@htoomaw1547 5 жыл бұрын
Sir, I want to ask. Ok?
@vb6programmingvbaprogrammi240
@vb6programmingvbaprogrammi240 8 жыл бұрын
How to create a splash screen with VB6 programming.
@SandeepKaundalSir
@SandeepKaundalSir 8 жыл бұрын
+VB6 Programming VBA Programming Already demonstrated in the video(Splash Screen with Progress Bar).
@sixestla8878
@sixestla8878 9 жыл бұрын
You can't upgrade Visual Basic to 2010 Express Version ? Because this version is very old..
@unicodefox
@unicodefox 8 жыл бұрын
+Redall Redall Or even VS 2015 Community?
@sixestla8878
@sixestla8878 8 жыл бұрын
Yes i have now too VS2015
@unicodefox
@unicodefox 8 жыл бұрын
Redall Redall its most likely newer versions of vb use vb.net this old version uses vb6
@SandeepKaundalSir
@SandeepKaundalSir 8 жыл бұрын
+Redall Redall These tutorials are only meant for School and College students (As per their syllabus)or Programming Beginners.
@unicodefox
@unicodefox 8 жыл бұрын
Sandeep Kaundal My school teaches VB 2010.
@ho0goh
@ho0goh 5 жыл бұрын
how to refresh progressbar?
@samirhamrouchi4267
@samirhamrouchi4267 5 жыл бұрын
good how to calcul in the dbgrid
@kar12211
@kar12211 8 жыл бұрын
can u give me the visual basic download link
@MrAndrjuha
@MrAndrjuha 8 жыл бұрын
Its not so hard to find it.
@ManishKumar-sx1gh
@ManishKumar-sx1gh 8 жыл бұрын
what is MDI from?
@SandeepKaundalSir
@SandeepKaundalSir 8 жыл бұрын
+Manish Kumar Multiple Document Interface.. Such MDI Applications displays multiple documents (forms) at same time.Each document have its own window.MDI is center of User interaction.User can view more than one form at a time.
@romeodayrit733
@romeodayrit733 8 жыл бұрын
can i use this in visual 2008 ?
@SandeepKaundalSir
@SandeepKaundalSir 8 жыл бұрын
Yes ,you can use it VB 2008. as you know there are different methods or procedure and their arguments used in 2008.but you can still use this code in 2008. Code within the procedures remains same. Just click on Timer control and add the same piece of code.it will work for you definitely in 2008. If you still facing issues.then i am here to help u...
@romeodayrit733
@romeodayrit733 8 жыл бұрын
oh i got it . thanks for your good information thumbs up for this video .
@szczerbatekFnaf
@szczerbatekFnaf 7 жыл бұрын
No work ...
@VeeTHis
@VeeTHis 8 жыл бұрын
Dude, nobody uses Visual Basic 6.0 anymore.
@SandeepKaundalSir
@SandeepKaundalSir 8 жыл бұрын
I know....Nobody uses visual basic 6.0 but everybody wants to learn visual basic.... these tutorials are made only to assist the beginners.....
@MrAndrjuha
@MrAndrjuha 8 жыл бұрын
Thats a good answer!
@magajalkah8429
@magajalkah8429 6 жыл бұрын
مش واضح 😑😑😑
@mc-developers5806
@mc-developers5806 6 жыл бұрын
It's fake...
@SandeepKaundalSir
@SandeepKaundalSir 9 жыл бұрын
Splash Screen with Progress Bar (Loading Page)Visual Basic 6.0-Quick and easy Tutorial is mainly focused on the following points. 1.How you can create a splash Screen. 2.How you can add progress Bar to your form using advanced controls. 3.Above the progress Bar, We can also show "Loading" Label along with progress meter that starts from 0% and end at 100%. When loading is completed, immediately Welcome /Main Page appears on the screen. All Steps are self explanatory and easy. Every one can create such splash screen with progress Bar. for your little help am attaching the code for your reference. VB Code: Option Explicit Private Sub Form_Load() Timer1.Enabled = True End Sub Private Sub Timer1_Timer() ProgressBar1.Value = ProgressBar1.Value + 5 Label1.Caption = "Loading....." Label5.Caption = ProgressBar1.Value & "%" If (ProgressBar1.Value = ProgressBar1.Max) Then Timer1.Enabled = False Unload Me Form2.Show End If End Sub
@tamilvendan7507
@tamilvendan7507 8 жыл бұрын
i am also from india
@smartbas8020
@smartbas8020 7 жыл бұрын
Hi i have doubt. how can i add the timer control command. In my VBA it's not available. Please advise
Самое неинтересное видео
00:32
Miracle
Рет қаралды 2,7 МЛН
Bike Vs Tricycle Fast Challenge
00:43
Russo
Рет қаралды 74 МЛН
escape in roblox in real life
00:13
Kan Andrey
Рет қаралды 77 МЛН
progress bar in access database vba
12:03
MCi Tech
Рет қаралды 6 М.
How to make simple login form using vb 6 0
6:57
Isuru Udara
Рет қаралды 21 М.
How To Connect Microsoft Access Database with Visual Basic 6.0
11:32
connecting VB 6.0 to MS Access|| Step by Step
28:08
IntroIT TV
Рет қаралды 18 М.