Very good!!! 👏🏼👏🏼👏🏼 However, it is necessary to adjust the TopMost property of the form that presents the message, so that it will always be visible ...
Hi, aside from setting the Top Most property to true, you can also set the "Show on Task Bar" property to false to make it look like you are not opening another form. :)
Я очень плохо знаю английский язык, однако ты очень крутой Спасибо тебе большое, благодаря тебе я сделал курсовую работу на третьем курсе, на четвертом, а сейчас мне предстоит написать дипломную работу Без тебя я был бы сейчас не я)
Very nice tutorial! I have added a line limit. So it looks a little better if the text too long. if (msg.Length >= "line limit") { string msgShort = msg.Substring(0, "line limit"); msg = msgShort + "..."; } this.lblMsg.Text = msg;
Nice video bro! I have a question, how to make notification Form appear on the top screen? And when I click again on button, the notification Form appears below of it?
Look great! Great tutorial! Three issues: 1. The first notification is under the taskbar, how to determine the height of the taskbar? 2. When I click many times, the notification start to pop on the top left of the screen. 3. Why does the X has a border if we disabled it? Only unselected forms have that. If you click the form it goes away.
In my case, when the for loop runs for the first time (0th time) the Y location is given WorkingArea.Height - this.Height * i (that is 0) making it positioned behind the taskbar. is there anything I'm missing? or should I start the loop with 1?
Hi. I want to learn how to make c# desktop application responsive to all screen sizes for example as Intel graphic control panel desktop application. It is responsive. Make a tutorial on it if possible.
Well i´m not sure how this could going on: i´m opening an alert, after i open the alert i open an messagebox with if-statement and waiting for the user-interact. At this point where the alert is going away my full programm is closing. Someone else has this problem too? So: 1. Call an Alert 2. Call MessageBox in IF statement with dialogresult 3. Let MessageBox open until the Alert fades away 4. Your Program will close I would be very happy for some help. Best Regards :) EDIT: The Program closes at mine version because i say in my IF statement if(dialog = ok)...else(enviroment.exit(0)) So i saw now when the alert is closing it closes also other messageboxes, like an internal code-error. So the problem is: alert closes = other messagebox close too
Pls is can u help with how you can start closing the notification from the top and adding new ones in the bottom instead I think it will be more organized.i have not been able to adjust that
Video is great. Can you show me how to get icon finder window, I tried typing the word "pich" like ten thousand but it didn't come out like you. Hope you help me. Thank you
what is that topmost property mentioned by air venuth?? I've used this method but my alert is opening as a window minimized??its not showing that at bottom right of my screen
How to use this where I have a form with the true IsMdiContainer property, and in it I call another forms which I want to use the same notification as the video? Thanks
Hello Sidharth, Please focus on the line of code in the video at 8:50 in which we set the location of the message box. Just set the X and Y of this message box equal to your form's X and Y. Feel free to add or minus values to change the location of it. I hope it will work for you.. :)
Thanks for this beautiful notification and i have a question about this command : case enmType.Success: this.PictureBox.Images=Recources ? I can't find this = Recources can you show me how do you solved that problem ?
Open the design view of your message form, go to properties and set the TopMost property to True.. I hope it will fix your issue... Thanks for watching our videos... Stay tuned for more.. ❤️
très intéressant, mais le soucis c'est que c'est pas possible d'avoir les notifications visibles 'agrandit la fenêtre des boutons, les notifications sont derrières! Dommage
Very good!!!
👏🏼👏🏼👏🏼
However, it is necessary to adjust the TopMost property of the form that presents the message, so that it will always be visible ...
Your comment is now topmost ;-)
Great 👍
what is that topmost property??
I've used this method but my alert is opening as a window minimized
Hi, aside from setting the Top Most property to true, you can also set the "Show on Task Bar" property to false to make it look like you are not opening another form. :)
I already set the topmost true but it still does not work
Finally i found straight to the point tutorials with more coding And less talking. Keep it up.
thank you so much for help ... I love all yours Tutorials ... I don't know why people don't like yours tutorials ... 💕💕💕
Don't know how to say, but this videos are really awesome and I am loving it. Greatly done and demonstrated. Thanks for this..
Я очень плохо знаю английский язык, однако ты очень крутой
Спасибо тебе большое, благодаря тебе я сделал курсовую работу на третьем курсе, на четвертом, а сейчас мне предстоит написать дипломную работу
Без тебя я был бы сейчас не я)
Wow this is what I'm looking for. Can I use it for our school project? [Thanks in advance]
Yeah you can... 😊
it's working fine and awesome.. now, how to get it to work inside forms environment ?
Come on man, how innovative it is.....wow
Nice song and highly usefull tutorial ! #THANKS ! :)
Your channel helps us developers more inspired to devolop I salute your designs and I'm inspired keep it up
Very good men, keep make videos on C# pls
Love your videos. I would love to take your course if you teach on Udemy.
Hi, great tutorial, can this be triggered by time instead of buttons?
Thanks, @C# Ui Academy you save my time
Great work sir
Very nice tutorial!
I have added a line limit. So it looks a little better if the text too long.
if (msg.Length >= "line limit")
{
string msgShort = msg.Substring(0, "line limit");
msg = msgShort + "...";
}
this.lblMsg.Text = msg;
found this for the Knowledge, replayed this for the music lmao
bro that is wonderful!!! return "thanks a lot !!!";
Nice video bro! I have a question, how to make notification Form appear on the top screen? And when I click again on button, the notification Form appears below of it?
Jut change the values of this.y and this.x to change to location of notification panel.
Great design!! Btw, ShowInTaskbar should be disabled but thanks a lot anyway.
yo thanks so much the image app helps alot, you earned yourself a like and a sub
Song name is: Landscape - Jarico
Thank you very much
Look great! Great tutorial!
Three issues:
1. The first notification is under the taskbar, how to determine the height of the taskbar?
2. When I click many times, the notification start to pop on the top left of the screen.
3. Why does the X has a border if we disabled it? Only unselected forms have that. If you click the form it goes away.
same issue with notification under the taskbar
thank you so much for help
good work my friend
In my case, when the for loop runs for the first time (0th time) the Y location is given WorkingArea.Height - this.Height * i (that is 0) making it positioned behind the taskbar. is there anything I'm missing? or should I start the loop with 1?
Just tested after modifying the loop as "i=1;i
Hi. I want to learn how to make c# desktop application responsive to all screen sizes for example as Intel graphic control panel desktop application. It is responsive. Make a tutorial on it if possible.
Just what I needed! Thank you!
Hi can I request if you can make this on wpf? If yes it would be cool!
Great Job ! 👍
Well i´m not sure how this could going on:
i´m opening an alert, after i open the alert i open an messagebox with if-statement and waiting for the user-interact. At this point where the alert is going away my full programm is closing.
Someone else has this problem too?
So:
1. Call an Alert
2. Call MessageBox in IF statement with dialogresult
3. Let MessageBox open until the Alert fades away
4. Your Program will close
I would be very happy for some help.
Best Regards :)
EDIT:
The Program closes at mine version because i say in my IF statement if(dialog = ok)...else(enviroment.exit(0))
So i saw now when the alert is closing it closes also other messageboxes, like an internal code-error.
So the problem is: alert closes = other messagebox close too
Would be amazing if this would work sending those into a remote computer
Thank youu. Working very well.
nice work 👏👏👏👏👏
Pls is can u help with how you can start closing the notification from the top and adding new ones in the bottom instead I think it will be more organized.i have not been able to adjust that
Awesome its very helpful to me
Very nice.
Video is great.
Can you show me how to get icon finder window,
I tried typing the word "pich" like ten thousand but it didn't come out like you.
Hope you help me. Thank you
Большое спасибо. Очень классный урок )))
Brilliantly done 👍
Simplesmente uma maravilha Amigo, te aguardo como meu professor na plataforma da Udemy. Forte Abraço.
Wow. You teach also on udemy?
No entiendo nada sus comentarios, jajaj pero que gran video #Gracias
THANKS
Nice video. Thanks.
Thanks :)
thanks
Awesome Brooo
Great! Very useful, thank you very much
what is that topmost property mentioned by air venuth??
I've used this method but my alert is opening as a window minimized??its not showing that at bottom right of my screen
Thank you!
I love you so much ❤💙💖💕💓💜💛💚💗💘💝💞💟👍
how did you get those notifications on top of each other without writing any code for it?
How to use this where I have a form with the true IsMdiContainer property, and in it I call another forms which I want to use the same notification as the video? Thanks
That's amazing boss your so good
How to control the location. If I want to show this inside a form
Hello Sidharth, Please focus on the line of code in the video at 8:50 in which we set the location of the message box. Just set the X and Y of this message box equal to your form's X and Y. Feel free to add or minus values to change the location of it.
I hope it will work for you.. :)
Hlo please help it is not working for me when I click on button the notification open new tab it does open like notification please help me
Good job. Thanks so much!
Thank you so much :)
Can you make tutorial for make chart line/bar using data from sql server
Great tutorial, thanks!
Is there some way to implement it on UWP?
Good job bro!
Very useful !😍😍
4:33 what's this app for icon??
Esa app de los iconos es gratis??
Similar code to mdemy. My problem is that it does not appear on full screen (maximized) form
Select your form_alert, go to properties, set the top most property to true... I hope it will fix your problem.
@@CUiAcademy thanks! Problem fixed
Thanks for this beautiful notification and i have a question about this command :
case enmType.Success:
this.PictureBox.Images=Recources ?
I can't find this = Recources can you show me how do you solved that problem ?
same
using your_project_name.Properties;
I already set hte TopMost True but it does not work sir
thanks alot
Amazing bro!!you are great!\
Notification is showing under taskbar, how i can fix it?
Open the design view of your message form, go to properties and set the TopMost property to True.. I hope it will fix your issue... Thanks for watching our videos... Stay tuned for more.. ❤️
Fantastic
Toooop. Obrigado por esse vídeo!
très intéressant, mais le soucis c'est que c'est pas possible d'avoir les notifications visibles 'agrandit la fenêtre des boutons, les notifications sont derrières! Dommage
How do I link it to a database and extract expired contracts
how do we run this program in the browser?
Does this work on 2019?
tnxxxxxxxxxxxxxxxxxxxxxx
the build is successful i cant see the popup after runnung
hi , i want to communicate with regarding data binding in c #, i am facing lot of problem
Great!... as always
Very Cool! Thanks💖
Goooodddd
the download for the source isnt working
No comprendo por que mete un for en el 9:11, ¿cual es su función?
That Cool Bro!!!
Top
❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤
it's not good for multiple screen sadly :(
牛逼 ,超级喜欢你的视频
The
this.Location = new Point(this.x, this.x,);
have problem with Point help
FOUND THE PROBLEM!!!
THANK YOU!!!!
Song ?
Landscape - Jarico
how do i create an account for your site bruh
Can you Write code for left Side notification Please?
i believe you can edit it.
@@twitchizle I am New Developer Here
@@softmanagement9255 im new too. You can edit it with your english and basic math skills.
@@softmanagement9255 do it by yourself. You aren't a child
Thumbs up
the program closes every opened form.ShowDialog() and every messagebox
the development community is dying..
looks like there are people keeping it alive.
it aint working bro for me atleast