Hi! Excellent video as always. Am really enjoying the C# content. One thing though, the formula for Kelvin is Celsius + 273, not Celsius - 273. I couldn't seem to get the other two buttons to input the correct numbers until I figured out that the formula was wrong.
Thank you for detailed explanation 🙏 able to complete the assignment. Looking forward to the amazing stuff as always you are providing us. May God bless you 🙏
Thanks so much! I was getting a 0019 error and had no idea why, but I had forgotten to use parse and tostring to convert the input so the app could actually use it. Now my program works perfectly.
@@shadsluiter Yeah, I've made some basic ones now. And I'm sure I'll get better at it, all thanks to wonderful teachers like you on TH-cam! Greetings from Kerala, India!
I'm doing this code now and yes it works for the most part but for some reason in the textbox changed events for all 3 textboxes I get a StackOverFlow exception on my toString lines
There should be three different onChange event handlers. A circular call to the event may be cause the program to get into an infinite loop by triggering itself.
There is only 0 Kelvin`s : ) What is the best book to learn that you shown? I dont know where to learn properties "somthing.somthing" when I need to give instructions
at 13:47 you get the error message after deleting the number from the box (on text change). It is because the empty box is caught by our try / catch code. Could you pleae advise how to avoid it?
The problem I have is that when I type in the box, it works with only the Fahrenheit (spell check just got our Fahrenheight, LOL) box. If I add it to the others, when I change to another box, they all try to update the one I'm typing in and it messes me up. When I delete all the numbers, I get a popup error message.
Hi! Excellent video as always. Am really enjoying the C# content. One thing though, the formula for Kelvin is Celsius + 273, not Celsius - 273. I couldn't seem to get the other two buttons to input the correct numbers until I figured out that the formula was wrong.
Thank you so much for the lessons it really helped me, I was already stopping to try learning programming but it gave me a gas to continue!
Thank you sir. Really enjoying your content please do not stop making such precious videos...
Thank you so much for detailed explanation video. I was able to do other 2 conversion buttons. Now I can create windows Forms.
Thank you for detailed explanation 🙏 able to complete the assignment. Looking forward to the amazing stuff as always you are providing us. May God bless you 🙏
My pleasure!
Very detailed and beginner friendly explanation
Thanks so much! I was getting a 0019 error and had no idea why, but I had forgotten to use parse and tostring to convert the input so the app could actually use it. Now my program works perfectly.
Thanks for this video. I have been looking for someone can teach like you did and you do. I will suggest it any beginner in c#
Sir, your channel is a treasure trove!
Wow, thanks! Have you made some apps with it?
@@shadsluiter Yeah, I've made some basic ones now. And I'm sure I'll get better at it, all thanks to wonderful teachers like you on TH-cam! Greetings from Kerala, India!
This really helped me to get a good idea on how to do gui programming on C#. Thank you very much
Glad it helped!
excellent videos, thank you so much.
Thank you very much for helping me my assigment
I'm doing this code now and yes it works for the most part but for some reason in the textbox changed events for all 3 textboxes I get a StackOverFlow exception on my toString lines
There should be three different onChange event handlers. A circular call to the event may be cause the program to get into an infinite loop by triggering itself.
Thank u so much sir....
There is only 0 Kelvin`s : )
What is the best book to learn that you shown?
I dont know where to learn properties "somthing.somthing" when I need to give instructions
at 13:47 you get the error message after deleting the number from the box (on text change). It is because the empty box is caught by our try / catch code.
Could you pleae advise how to avoid it?
The problem I have is that when I type in the box, it works with only the Fahrenheit (spell check just got our Fahrenheight, LOL) box. If I add it to the others, when I change to another box, they all try to update the one I'm typing in and it messes me up. When I delete all the numbers, I get a popup error message.
Can someone give the formula tor conversion of kelvin to fahrenheit and kelvin to celsius
float f = (k - 273.15f) * 9 / 5 + 32; --------- (Kelvin to Fahrenheit)
float c = k - 273.15f; -----------------------------(Kelvin to Celsius)
I can't figure out how to convert Kelvin to Fahrenheit. Here is my code (kelvin) − 273.15) × 9 / 5 + 32;
(0K − 273.15) × 9/5 + 32 = -459.7°F
Would be great to see open code in GitHub, if it is possible?
Okay, can someone give the correct formula kelvin to fahrenheit and kelvin to celsius
float f = (k - 273.15f) * 9 / 5 + 32; --------- (Kelvin to Fahrenheit)
float c = k - 273.15f; -----------------------------(Kelvin to Celsius)
Thanks@@shwetachavan751