you can use the panel1.width for the maximum value in the if statement
@Charles.9992 жыл бұрын
Best method : Use a progress bar (real one in the toolkit) + timer and progressbar1.Value++; on timer1_tick event then if (progressbar1.Value == 100) ... do whatever you want when the loading is done. (make sure to timer1.Enable = false; to turn off the timer at the beginning of your if !)
@ggre552 жыл бұрын
well its the same isnt it also i was wondering why most people not using real progress bar
@bibhasash7371 Жыл бұрын
@@ggre55 because progressbar custoimization is limited
@Tarucz4 жыл бұрын
Ah someone who actually shows how to do it in 2020. Liked
@DearProgrammer4 жыл бұрын
thank you for you support
@darlinmanuelcasadoperez10922 жыл бұрын
Very straight foward video!
@DearProgrammer2 жыл бұрын
thanks
@NarendraKanzariya-d2j5 ай бұрын
Nice design and easy to understand 😅😅😅
@DearProgrammer5 ай бұрын
Thanks a lot 😊
@dilerkurd26762 жыл бұрын
Thank You Dear Programmer!
@DearProgrammer2 жыл бұрын
You are welcome!
@MonderMurshed Жыл бұрын
Really useful! thank u.
@DearProgrammer Жыл бұрын
Glad it was helpful!
@nnnscorpionnn6 ай бұрын
How can we use it process bar acctually? If our main form takes too time to load and if we want to use splash screen to make user see when the main form being loaded.
@DearProgrammer6 ай бұрын
you have to set conditions on loading form (splash screen).
@nnnscorpionnn6 ай бұрын
@@DearProgrammer oh thank you
@mohamedarsho22783 жыл бұрын
Thnkz 🙏 100% taacher
@hiddenhidden63404 жыл бұрын
//You should use this if (panel2.width >= panel1.width ){} . //And also this Form2 frm2 = new Form2(); this.hide; frm2.showdialog(); this.close;
I already had an existing form, but now i want to add the loading thing/splash screen. This doesn't seem to work
@shahbaksh29153 жыл бұрын
I have the same problem. I'll try to find a work around on it and let you know.
@DiyintheGhetto Жыл бұрын
Is there a way to do the same thing but with a loading text with the progress?
@nicolasortiz29463 жыл бұрын
This video is too underrated
@DearProgrammer3 жыл бұрын
Thanks
@DJone4one3 жыл бұрын
but i have a little proble now. i want that the panel run, if i click on the button login. can you show me where i should can put in it?
@DearProgrammer3 жыл бұрын
you should code that into your button on click event
@signaller2 жыл бұрын
Simple Make a new forms make sure the login form runs first make the button open the splash screen forum
@spoiled-pizza4 жыл бұрын
panel2.Width += 3; if (panel2.Width >= 599) { } timer1.Stop(); Form1 fm2 = new Form1(); _ = Show(); this = Hide(); } } } What if you already had your app and you need to put a splash screen? for me it does not show. Just the actual app, not the splash screen. Help!
@DearProgrammer4 жыл бұрын
you should create splash screen like this and add in your project then you have to give start point of program from spalsh screen
@-cultruz-98463 жыл бұрын
Go to the Solution Explorer and click on to view the code of "Program.cs", once in, go to the area where it says : Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Background()); } Once here, edit the (new "Background"()); to (new "the name of ur form"());
@Omer-xm9dq4 жыл бұрын
panel2.Width += 3; if (panel2.Width >= 712) { timer1.Stop(); Ana_Menü ana_Menü = new Ana_Menü(); ana_Menü.Show(); this.Hide(); } Can you help me?
@РоманШиянов-ж6й2 жыл бұрын
Спасибо!!!!!
@ryze46624 жыл бұрын
hello how could i make it that the progress bar moves when a button is clicked ? good video by the way :)
@DearProgrammer4 жыл бұрын
Yes you can, you have to run progress bar on button Click Event
@harleyphoenix33013 жыл бұрын
dont know if anyone cares but if you're bored like me during the covid times then you can watch all of the new movies on InstaFlixxer. I've been watching with my girlfriend lately xD
@sterlingzaire92243 жыл бұрын
@Harley Phoenix Definitely, I've been using instaflixxer for since december myself =)
@ishanmadushanka3709 Жыл бұрын
thank you bro
@DearProgrammer Жыл бұрын
Welcome
@bozidar_gluvic2 жыл бұрын
hello, how could the transition be made slower when a new form opens up ??
@1bouch2 жыл бұрын
hey sir, check Interval in timer properties and choice number more than 15 second :)
@nebben71224 жыл бұрын
This is not a progress bar, this is just a fancy animation that will delay 5 seconds to the user as the implementation shown in the video does not denote any "real progress" or load on the application. :/
@orangeshorts84872 жыл бұрын
its for the looks. smh
@Wan_Destroyer2 жыл бұрын
Thank you sooo much
@DearProgrammer2 жыл бұрын
Welcome 😊
@abdullohsj4 жыл бұрын
are you sure you're using progressbar control?
@mikoczaneq4 жыл бұрын
Great! Thansk!
@DearProgrammer4 жыл бұрын
You're welcome!
@noelearlborinaga49518 ай бұрын
is this a .NET? C# windows form?
@kavishanethmini80533 жыл бұрын
I have a problem in +- 3 .it got error
@DearProgrammer3 жыл бұрын
try += 3 if it doesn't solve then show me the code if you can
@kavishanethmini80533 жыл бұрын
@@DearProgrammer thank you. It's work
@odioifroci22242 жыл бұрын
more streched video pls?🤑🤑
@hiddenhidden63404 жыл бұрын
Thanks
@DearProgrammer4 жыл бұрын
Welcome
@markosabados3902 жыл бұрын
Hi i have a problem when i type numbers for my backcolor i hae an error: Property alue is not valid, 48,56, 79 is not valid value for int32. How can i fix this?
@fitnastifter28 Жыл бұрын
use ; instead of ,
@cuetard202310 ай бұрын
This works but its way too fast even after changing the interval to 50000