Thanks sir When I did it , it's successfully run , excellent video
@vishaljoshi19772 жыл бұрын
Thanks Sir its very uesfull video to creat saplashscreen form thnaks a lot again
@SandeepKaundalSir2 жыл бұрын
Thanks 🙏.check my other videos too
@ntcepicreply59935 жыл бұрын
Thankyou sir ji... It's Helpful video 👍👍🙏
@b.k.ravishankar19718 ай бұрын
Super sir 🙏
@SandeepKaundalSir8 ай бұрын
Thanks buddy
@artiupadhyay71002 жыл бұрын
Thanks alot sir..your video is so helpful...🙏🏻
@SandeepKaundalSir2 жыл бұрын
You are most welcome 🙂.check my other videos too.
@Den-r2 жыл бұрын
thanks it works well.
@SandeepKaundalSir2 жыл бұрын
Thanks for your valuable comment
@addadd87842 жыл бұрын
thank you very much
@SandeepKaundalSir2 жыл бұрын
You are welcome.please share my videos,:-)
@visclo_king48903 жыл бұрын
Thanks sir. i have tried to reproduce it but i don't know how to get the Timer.
@SandeepKaundalSir3 жыл бұрын
Timer control is available in vb toolbox with a clock symbol.check and drag it to your form for use.
@visclo_king48903 жыл бұрын
@@SandeepKaundalSir thank you for the answer but it seems like the timer control is not available in my vb toolbox.
@SandeepKaundalSir9 жыл бұрын
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
@xWolfyz8 жыл бұрын
Very Helpful Sir, have a good day.
@SandeepKaundalSir8 жыл бұрын
I am glad that it is working fine for you... Check my other videos too... I hope you will find this useful.
@SandeepKaundalSir9 жыл бұрын
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
@jitingeorge64846 жыл бұрын
Sandeep Kaundal can u send me the vb6 software.. My software does not habe a date picker... Windows 7 64bit
@penggunaphp72979 жыл бұрын
How to implement it to real loading time of application? I think i don't need progress bar if i use only loop....
@SukhaRehal13138 жыл бұрын
hi sandeep ji you tutorials are essay to understand it helps me to making a project in vb 6.0 thanks
@SandeepKaundalSir8 жыл бұрын
You are Welcome Mr Rehal Ji. Keep learning and sharing
@martinalebachew47309 жыл бұрын
What is your visual studio version?
@JGBURGUITE Жыл бұрын
how to sort data by number of delimiter?+progressbar
@n1lknarf4 жыл бұрын
How could I implement this with unreal engine?
@educationhub82417 жыл бұрын
sir in vb6 lavel.caption is not working in progressbar programme what to do
@asifullahdaudzai7389 жыл бұрын
Thanks For such a Good Info
@SandeepKaundalSir9 жыл бұрын
+Asif Ullah ..Watch my other latest tutorials too..
@RealMaiWaifu9 жыл бұрын
how do you get it to restart when its below max value?
@sixestla88789 жыл бұрын
You can't upgrade Visual Basic to 2010 Express Version ? Because this version is very old..
@unicodefox9 жыл бұрын
+Redall Redall Or even VS 2015 Community?
@sixestla88789 жыл бұрын
Yes i have now too VS2015
@unicodefox9 жыл бұрын
Redall Redall its most likely newer versions of vb use vb.net this old version uses vb6
@SandeepKaundalSir9 жыл бұрын
+Redall Redall These tutorials are only meant for School and College students (As per their syllabus)or Programming Beginners.
@unicodefox9 жыл бұрын
Sandeep Kaundal My school teaches VB 2010.
@koelmahata84258 жыл бұрын
thank you sir.it helped me a lot
@SandeepKaundalSir8 жыл бұрын
I am glad to hear this. Check my latest videos as well. You will find my other YT videos useful.
@tanmaykumar56508 жыл бұрын
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 ?
@SandeepKaundalSir8 жыл бұрын
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).
@tanmaykumar56508 жыл бұрын
Thank you sir , Now I got it. Please make more videos so we can learn with ease :)
@SandeepKaundalSir8 жыл бұрын
Definitely,I am creating more videos .simple and easy
@theslavserb89568 жыл бұрын
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
@SandeepKaundalSir8 жыл бұрын
Great !!! .... Keep on learning and sharinggg...
@oonyuali75307 жыл бұрын
please send me that code. oonyuali@gmail.com
@tronerz24t28 жыл бұрын
this code still applicable in 2010?
@ho0goh6 жыл бұрын
how to refresh progressbar?
@shanmugakumar57983 жыл бұрын
Tq sir
@SandeepKaundalSir3 жыл бұрын
You are welcome. Check my other videos too.
@samirhamrouchi42676 жыл бұрын
good how to calcul in the dbgrid
@vb6programmingvbaprogrammi2408 жыл бұрын
How to create a splash screen with VB6 programming.
@SandeepKaundalSir8 жыл бұрын
+VB6 Programming VBA Programming Already demonstrated in the video(Splash Screen with Progress Bar).
@htoomaw15475 жыл бұрын
Sir, I want to ask. Ok?
@ManishKumar-sx1gh8 жыл бұрын
what is MDI from?
@SandeepKaundalSir8 жыл бұрын
+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.
@romeodayrit7338 жыл бұрын
can i use this in visual 2008 ?
@SandeepKaundalSir8 жыл бұрын
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...
@romeodayrit7338 жыл бұрын
oh i got it . thanks for your good information thumbs up for this video .
@sivadharshan12359 жыл бұрын
very good
@SandeepKaundalSir9 жыл бұрын
+vimal sarvesh thank you !!!
@muhammadafzal2376 жыл бұрын
Great!
@happychuckprogramming60485 жыл бұрын
nice one, amazing.. I also have a video on creating splash screens (in python pygame) though.. good.
@kar122119 жыл бұрын
can u give me the visual basic download link
@MrAndrjuha8 жыл бұрын
Its not so hard to find it.
@sushmitadewangan95536 жыл бұрын
Plzz sir payroll management system pr video bnaiye na plzz
@qbinhyoutebehome7 жыл бұрын
i love it..
@szczerbatekFnaf7 жыл бұрын
No work ...
@magajalkah84297 жыл бұрын
مش واضح 😑😑😑
@HasanthaKariyawasam9 жыл бұрын
it good...
@SandeepKaundalSir9 жыл бұрын
+Hasantha Kariyawasam Thanks... See my other video tutorials on youtube
@VeeTHis8 жыл бұрын
Dude, nobody uses Visual Basic 6.0 anymore.
@SandeepKaundalSir8 жыл бұрын
I know....Nobody uses visual basic 6.0 but everybody wants to learn visual basic.... these tutorials are made only to assist the beginners.....
@MrAndrjuha8 жыл бұрын
Thats a good answer!
@mc-developers58066 жыл бұрын
It's fake...
@SandeepKaundalSir9 жыл бұрын
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
@tamilvendan75078 жыл бұрын
i am also from india
@smartbas80208 жыл бұрын
Hi i have doubt. how can i add the timer control command. In my VBA it's not available. Please advise