How to Create Modern Splash Screen with Progress Bar using C# | Visual Studio Tutorials

  Рет қаралды 108,152

Dear Programmer

Dear Programmer

Күн бұрын

Пікірлер: 75
@DJone4one
@DJone4one 3 жыл бұрын
you can use the panel1.width for the maximum value in the if statement
@Charles.999
@Charles.999 2 жыл бұрын
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 !)
@ggre55
@ggre55 2 жыл бұрын
well its the same isnt it also i was wondering why most people not using real progress bar
@bibhasash7371
@bibhasash7371 Жыл бұрын
@@ggre55 because progressbar custoimization is limited
@Tarucz
@Tarucz 4 жыл бұрын
Ah someone who actually shows how to do it in 2020. Liked
@DearProgrammer
@DearProgrammer 4 жыл бұрын
thank you for you support
@darlinmanuelcasadoperez1092
@darlinmanuelcasadoperez1092 2 жыл бұрын
Very straight foward video!
@DearProgrammer
@DearProgrammer 2 жыл бұрын
thanks
@NarendraKanzariya-d2j
@NarendraKanzariya-d2j 5 ай бұрын
Nice design and easy to understand 😅😅😅
@DearProgrammer
@DearProgrammer 5 ай бұрын
Thanks a lot 😊
@dilerkurd2676
@dilerkurd2676 2 жыл бұрын
Thank You Dear Programmer!
@DearProgrammer
@DearProgrammer 2 жыл бұрын
You are welcome!
@MonderMurshed
@MonderMurshed Жыл бұрын
Really useful! thank u.
@DearProgrammer
@DearProgrammer Жыл бұрын
Glad it was helpful!
@nnnscorpionnn
@nnnscorpionnn 6 ай бұрын
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.
@DearProgrammer
@DearProgrammer 6 ай бұрын
you have to set conditions on loading form (splash screen).
@nnnscorpionnn
@nnnscorpionnn 6 ай бұрын
@@DearProgrammer oh thank you
@mohamedarsho2278
@mohamedarsho2278 3 жыл бұрын
Thnkz 🙏 100% taacher
@hiddenhidden6340
@hiddenhidden6340 4 жыл бұрын
//You should use this if (panel2.width >= panel1.width ){} . //And also this Form2 frm2 = new Form2(); this.hide; frm2.showdialog(); this.close;
@DearProgrammer
@DearProgrammer 4 жыл бұрын
thank you for you support
@hiddenhidden6340
@hiddenhidden6340 4 жыл бұрын
@@DearProgrammer welcome bro
@TipsJazzInferno
@TipsJazzInferno Жыл бұрын
Simple Code : private void timer1_Tick(object sender, EventArgs e) { metroProgressBar1.Value += 3; if (metroProgressBar1.Value >= 99) { metroProgressBar1.Value = 100; } }
@andreadann2218
@andreadann2218 Жыл бұрын
Hello! It is work same on visual basic ? Please
@envyyscar555
@envyyscar555 3 жыл бұрын
I already had an existing form, but now i want to add the loading thing/splash screen. This doesn't seem to work
@shahbaksh2915
@shahbaksh2915 3 жыл бұрын
I have the same problem. I'll try to find a work around on it and let you know.
@DiyintheGhetto
@DiyintheGhetto Жыл бұрын
Is there a way to do the same thing but with a loading text with the progress?
@nicolasortiz2946
@nicolasortiz2946 3 жыл бұрын
This video is too underrated
@DearProgrammer
@DearProgrammer 3 жыл бұрын
Thanks
@DJone4one
@DJone4one 3 жыл бұрын
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?
@DearProgrammer
@DearProgrammer 3 жыл бұрын
you should code that into your button on click event
@signaller
@signaller 2 жыл бұрын
Simple Make a new forms make sure the login form runs first make the button open the splash screen forum
@spoiled-pizza
@spoiled-pizza 4 жыл бұрын
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!
@DearProgrammer
@DearProgrammer 4 жыл бұрын
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-9846
@-cultruz-9846 3 жыл бұрын
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-xm9dq
@Omer-xm9dq 4 жыл бұрын
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й
@РоманШиянов-ж6й 2 жыл бұрын
Спасибо!!!!!
@ryze4662
@ryze4662 4 жыл бұрын
hello how could i make it that the progress bar moves when a button is clicked ? good video by the way :)
@DearProgrammer
@DearProgrammer 4 жыл бұрын
Yes you can, you have to run progress bar on button Click Event
@harleyphoenix3301
@harleyphoenix3301 3 жыл бұрын
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
@sterlingzaire9224
@sterlingzaire9224 3 жыл бұрын
@Harley Phoenix Definitely, I've been using instaflixxer for since december myself =)
@ishanmadushanka3709
@ishanmadushanka3709 Жыл бұрын
thank you bro
@DearProgrammer
@DearProgrammer Жыл бұрын
Welcome
@bozidar_gluvic
@bozidar_gluvic 2 жыл бұрын
hello, how could the transition be made slower when a new form opens up ??
@1bouch
@1bouch 2 жыл бұрын
hey sir, check Interval in timer properties and choice number more than 15 second :)
@nebben7122
@nebben7122 4 жыл бұрын
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. :/
@orangeshorts8487
@orangeshorts8487 2 жыл бұрын
its for the looks. smh
@Wan_Destroyer
@Wan_Destroyer 2 жыл бұрын
Thank you sooo much
@DearProgrammer
@DearProgrammer 2 жыл бұрын
Welcome 😊
@abdullohsj
@abdullohsj 4 жыл бұрын
are you sure you're using progressbar control?
@mikoczaneq
@mikoczaneq 4 жыл бұрын
Great! Thansk!
@DearProgrammer
@DearProgrammer 4 жыл бұрын
You're welcome!
@noelearlborinaga4951
@noelearlborinaga4951 8 ай бұрын
is this a .NET? C# windows form?
@kavishanethmini8053
@kavishanethmini8053 3 жыл бұрын
I have a problem in +- 3 .it got error
@DearProgrammer
@DearProgrammer 3 жыл бұрын
try += 3 if it doesn't solve then show me the code if you can
@kavishanethmini8053
@kavishanethmini8053 3 жыл бұрын
@@DearProgrammer thank you. It's work
@odioifroci2224
@odioifroci2224 2 жыл бұрын
more streched video pls?🤑🤑
@hiddenhidden6340
@hiddenhidden6340 4 жыл бұрын
Thanks
@DearProgrammer
@DearProgrammer 4 жыл бұрын
Welcome
@markosabados390
@markosabados390 2 жыл бұрын
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
@fitnastifter28 Жыл бұрын
use ; instead of ,
@cuetard2023
@cuetard2023 10 ай бұрын
This works but its way too fast even after changing the interval to 50000
@najafit1869
@najafit1869 3 жыл бұрын
panel2.Width += 3; if (panel2.Width >= 1060) { timer1.Enabled = false; timer1.Stop(); FRM_LOGIN frm = new FRM_LOGIN(); this.Hide(); frm.ShowDialog(); this.Close(); }
@anujamahagamage1316
@anujamahagamage1316 8 ай бұрын
❤❤
@DearProgrammer
@DearProgrammer 8 ай бұрын
thanks
@foveromw
@foveromw 2 жыл бұрын
it is not working. i do not know why
@foveromw
@foveromw 2 жыл бұрын
loadingPanel.Width += 3; if (loadingPanel.Width
@ayadali-alsalman2158
@ayadali-alsalman2158 3 жыл бұрын
Up
@lexhackergt4446
@lexhackergt4446 3 жыл бұрын
48;56;79
@1bouch
@1bouch 2 жыл бұрын
48,56,79
@hasanergen6358
@hasanergen6358 3 жыл бұрын
i know how to do this but can you please learn to spell also it feels like he recorded this on hypercam 2
@zypperzpr
@zypperzpr 4 жыл бұрын
thanks
@DearProgrammer
@DearProgrammer 4 жыл бұрын
Welcome
@hasanergen6358
@hasanergen6358 3 жыл бұрын
@@DearProgrammer how did you get your account deleted
How To Create Modern Sign Up Form in Winform Using C# .Net
14:52
Dear Programmer
Рет қаралды 10 М.
How to Create a Splash Screen With Custom Progress Bar in C#
12:41
Smart Sigma Kid #funny #sigma
00:33
CRAZY GREAPA
Рет қаралды 39 МЛН
BAYGUYSTAN | 1 СЕРИЯ | bayGUYS
37:51
bayGUYS
Рет қаралды 1,7 МЛН
sida loo sameeyo Splash screen fudud   C#
10:18
M Technology
Рет қаралды 1,1 М.
How to Create Circular Progress Bar In C# | Visual Studio Winform
5:48
Splash Screen in C# | WindowForm
10:48
CodeWab
Рет қаралды 625
Amazing Animated UI: Modern Login Form in C# Visual Studio 2023
27:04
HOW TO PROGRAM - Getting Started!
10:36
Brackeys
Рет қаралды 3 МЛН