📚 Learn how to solve problems and build projects with these Free E-Books ⬇️ C++ Lambdas e-book - free download here: bit.ly/freeCppE-Book Entire Object-Pascal step-by-step guide - free download here: bit.ly/FreeObjectPascalEbook 🚀📈💻🔥 My Practical Programming Course: www.codebeautyacademy.com/ Experience the power of practical learning, gain career-ready skills, and start building real applications! This is a step-by-step course designed to take you from beginner to expert in no time! 💰 Here is a coupon to save 10% on your first payment (CODEBEAUTY_YT10). Use it quickly, because it will be available for a limited time.
@@nigelfrank2646 I think you mean visual studio, no? I imagine, given that it's the same language, and visual studio has the option for creating applications with GUI for use in windows; logically speaking, I can't see why not. However I am still pretty fresh myself, so there may be some differences to the built-in coding for each program.
BTW, just a personal thank you for putting good stuff into the world. So much of the internet, and the world in general these days just has it's hands out to you asking for more and more money (that many of us don't have to give). So it's nice when there's people like you that don't have that mandatory expectation.
Simply, a logical, friendly how-to for someone like me who never programmed. This is great; she should have her own course series and I'll buy it. Studying her 10 hour C++ course as well and her rhythm is just perfect (currently in about 2.5 hours).
What will your company produce? I have a plan to build a company where people will enjoy working, a healthy and good environment and a lot of opportunities. I would lead with my example, motivate and inspire everyone! I'm currently working on a side-project in my free time. There are three of us, and the goal is to build software that will help small businesses to enter the market and find their customers. I know how difficult it was for me to reach people when I first started my YT channel, so I want to help others as much as I can. If that project succeeds I'll gladly share my experience and advice here on youtube. ❤️
I am artificial intelligence student but i never learn anything from my university but when i starts watching your video s now i am much better in coding thank you soo much saldina i am very grateful to you
This has got to be one of the most generous and useful channels to learn programming, the whole time I have been using UA-cam to learn. I don't know how much you make from these videos, but what we gain is definitely substantial. Thank you so much for posting these videos. They are quite valuable.
Hi CodeBeauty! I watched your tutorial titled "C++ FULL COURSE For Beginners (Learn C++ in 10 hours)" and just fell in love with it. You are such a mesmerisingly awesome teacher. I am a C++ newbie but want to become a C++ Super Hero in no time. Longingly waiting for your upcoming C++ GUI app tutorial! I want to build wonderful C++ GUI aps from scratch that run with lightening speed on any PCs. Many many thanks for your wonderful tutorials!
Hiii 🍓 🍓 Please stop calling people SIMPs 🙏 I really work hard and try to add as much value to my videos as possible, so there is no reason for someone to write a comment thanking me unless they really benefited from the video. It's superficial towards me and that other person. I hope you are also learning from the video because if not, you'll definitely have more fun on some other channel, and the "SIMP" comment will be more appreciated.
I just started teaching myself last month,,,for sure this is the best channel.and I love my teacher Saldina for creating variety of c++ videos which are changing my coding abilities💯💯,,,keep doing more videos for c++ and real world programming videos🎉🎉🎉,,, thank you so much Saldina🙏🙏
Hi mis engenier i am an informatical student from mauritania,i'am happy to watch your chanel,and i want to tell you that your explanation is very helpful,i have never understand with my teacher but with you every thing is easy ,thank you ❤
Thank you guys! ❤️❤️ Bot comment removed. I have no idea what kind of link that was, removing it so that people don't click accidentally, it could be a virus.
I came from the freecodecamp YT channel and watched your OOP tutorials. It was very good! I came here as soon as I finished watching. I am so done watching the basics of C++ and now I will stay here on your channel to do some projects. Thank you for doing this :)
I excelled in the distinctive explanation and gradation in providing information This is how we can build desktop applications on what we learned in traditional C++ programming🙂
now switch to C# and join my Practical Programming Course at www.codebeautyacademy.com Here we will build real desktop application, similar to those that you will be building as developer. I'll be happy to have you as part of my community. :)
Here's my code to fix the bug for being able to add blank tasks to the task list. void __fastcall TForm1::AddButtonClick(TObject *Sender) { String taskText=TaskEdit->Text; if (taskText!="")// If the task edit box is not empty TaskListBox->Items->Add(taskText);// then add text TaskEdit->Text="Please Enter Another Task"; } My next goal will be to program the click to remove the text that it prints after the first task is entered. I am new to coding and programming but I'm learning from your videos. I just finished the 10-hour video! Thanks for your hard work putting these together!
This is nothing compared to the course that I'm preparing. I'm replying to your comment during the pause between editing videos, and I can't wait to share it 🥰❤️
You re telling me ive invested so much time into learning python gui writing everything thinking they re the easiest to make till i saw this . (great video .. )
Hahaha, one of my professors at university used to say: if you want something to be finished fast, give it to a lazy person. He'll find the fastest way to do it. 😁
This is a great video and a needed help for every new programmer in the world ,and not only that ,you were also able to create a place where future programmers can meet and exchange opinions and future plans ,so from the deepest part of my heart I say thank you for what you are doing and please keep doing it ❤️❤️❤️
Now THIS!!! is what I was looking for! People who teach Coding leaves you after teaching the programming languages BUT this woman teaches how to make applications! Good Job @CodeBeauty my Respects.
Is it very interesting video. You should add couple of another functions. 1. Once you click on task, it should ask you whether you want to delete the task. Otherwise, people can click accidentally and all task gets removed. 2.it is also good to add a function of correcting task. Or adding something to it. I really enjoyed watching this video. Thank you ❤
I'm lesrning Qt. Didn't know this existed :). I love the community. As an electrician this isn't much of a community, just you, your boss, and the coworker and only 2 ways doing it, wrong or right. Programming, there's 3 ways of doing things, copy paste, invent a new way, and the inefficient way you were shown. That's the thing, you cna do anything with a program. And if you grt stumped, someone will literally come around and help you
Damn,my first gui app was in win32, this tool make it so easy to do gui, all the draw call made automatically, doesn't have to deal with windows messages nor registering the window class. Definitely a faster way to do gui.
That is normal if you are leaning. Practice and repetition is the mother of learning, the father of action, which makes it the architect of accomplishment. 🤗🤗
You finished your video with a challenge to find how to prevent the ADD button to put a blank line in the List Box. What I did was separate the two major operations you did with more space and then inserted an If-else operation so the it came out as follows: if(taskText == ""){ MagLabel->Text = "No TASK Entered"; } else { TasksListBox ->Add(tasksText); MsgLabel->Text = "Add Task"; TaskEdit->Text= "";} The original MsgLabel (upon starting the program was "Add Task" so that was reset to show that no task was entered. It works fine. VTS
Greetings, They way you are explaining is outstanding... I am doing PYTHON-FLET, KIVY, TKINTER for designing GUI... But I will try this too as I have started learning in C++..❤
i would rather suggest that you try C# instead of C++ because currently there is higher demand for C# developers. Check my Practical Programming Course at www.codebeautyacademy.com We are building real C# application and you will be learning alongside other students, with me as your personal tutor. With this you will also gain access to exclusive Discord community. I'll be happy to have you there. :)
I love the this tutorial! I would like to know how to use/implement the created GUI with C++ builder into the main project in visual studio. I have a lot of more videos to watchfrom your channel, but I would love to fill that gap :) I am programming c++ in unreal engine but as a self taught I have a lot of black holes in my learning path and because there is not a clear route plan for learning....as all I learned in everything I just start learning a bit randomly trying to resolve specific problems and along the time all the knowledge starts to get stronger for multiple purposes :) Thanks you for your time and effort in every video you make. I LOVE THEM and you are helping a lot of people with this
I do not know to code (yet... I'm on Odin Project) but I realli like this video. The solution to the bug at the end of the video seems to me an If situation... "if" that field = 0 then ... something like that. I really wanna learn C/C++, later. Thanks for the channel. Bookmarked
Brings back memories of when I first got a copy of this SW back in my University days (1994). Back then it was Borland C++ Builder v1.0, I still have the install media😉… great channel Saldina 🌸 all the best from the 🇬🇧… hope you got some sleep 😴
I was still writing my Windows GUI apps in VB at that time; made the jump to C++ Builder at version 3.0 and never looked back. I always said that C++ Builder is what Microsoft VC++ should have been, not that MFC nightmare. I am actually shocked that C++ Builder is still around - I've been a back-end dev for many years now, so I long since drifted away from GUI apps, and with the way things are in the industry one is lead to believe that Visual Studio is the only IDE around anymore for Windows development. I'm tempted to grab a license for C++ Builder, but I can only imagine the sticker shock of how much it costs. Borland's pricing model was bad, but when Inprise took over it actually got worse. No idea how Embarcadero prices its products.
This is a very helpful video thanks to you I gain new C++ skills. By the way I couldn't fix the bug I thought that we can use if condition but defining the condition is trickky.
I solved it with multiple if conditions : String taskText=TaskInput->Text; if(taskText != "") { TaskListBox->Items->Add(taskText); } else { ErrorLabel->Text="You can´t input an empty field!" ; } if(ErrorLabel->Text != "" && taskText!= "") { ErrorLabel->Text = ""; } TaskInput->Text=""; //Error label is an additional Label that displays said text. //Here is code for the bug this creates when clicked on boxitem int index {Item->Index}; TaskListBox->Items->Delete(index); if(ErrorLabel->Text != "" && TaskInput->Text == "") { ErrorLabel->Text = ""; }
Thanks for making these videos they are the best available. I have one question, will the C++ Builder Community Edition work for all of your tutorials?
I really appreciate your tutorials. I would like to see some tutorials on source code analysis. Source code in real life, something like a web server or some other interesting open source projects. If the open source project is too difficult for beginners you can pick some easy parts from it. Or maybe you can guide us to mimic a simple version of original project. This is kind of project based learning. The key is picking an interesting project cool project. Thank you teacher.
The way this guide is done is good and really easy to follow but, non of this applies outside this severely software, which you most likely will not encounter in the work place. I think it would be much better to make guides for Visual Studio etc. which will carry over to other systems much better. Otherwise, you might as well teach people how to program in scratch or other visual languages because it will be just as useful outside that program. This for instance will not transfer to Qt or Gtk etc. which are much more widely used but also use very different systems.
Yep, I'm trying to send a message - please call me at 3 am, I'm not sleeping anyway, I'm filming a video. 😁 Thanks, it's and old email and phone number. And people also have more chances that I'll reply if they leave a comment on my video, than if they call me from an unknown number. ☺️🍓🍓
@@CodeBeauty hello, I am curious to know why you used this program and not MS Visual Studio? Isn't it that the way to make GUI C++ application is to use the ancient Microsoft Foundation Classes or the wierd C++/CLI?
📚 Learn how to solve problems and build projects with these Free E-Books ⬇️
C++ Lambdas e-book - free download here: bit.ly/freeCppE-Book
Entire Object-Pascal step-by-step guide - free download here: bit.ly/FreeObjectPascalEbook
🚀📈💻🔥 My Practical Programming Course: www.codebeautyacademy.com/
Experience the power of practical learning, gain career-ready skills, and start building real applications!
This is a step-by-step course designed to take you from beginner to expert in no time!
💰 Here is a coupon to save 10% on your first payment (CODEBEAUTY_YT10).
Use it quickly, because it will be available for a limited time.
Question. Im new to C++ and Im intermediate at Python language. College student. So my Question is can this tutorial work using Visual C++
@@nigelfrank2646 I think you mean visual studio, no? I imagine, given that it's the same language, and visual studio has the option for creating applications with GUI for use in windows; logically speaking, I can't see why not. However I am still pretty fresh myself, so there may be some differences to the built-in coding for each program.
BTW, just a personal thank you for putting good stuff into the world. So much of the internet, and the world in general these days just has it's hands out to you asking for more and more money (that many of us don't have to give). So it's nice when there's people like you that don't have that mandatory expectation.
Hi Selina. To me is aperfect plan to buy you a coffee after having dinner anytime you want. Congratulations for this excellent work!
String taskText =TaskEdit->Text;
if(taskText !=""){
TaskListBox->Items->Add(taskText);
TaskEdit->Text="";}
Simply, a logical, friendly how-to for someone like me who never programmed. This is great; she should have her own course series and I'll buy it. Studying her 10 hour C++ course as well and her rhythm is just perfect (currently in about 2.5 hours).
She's straight to the point. I hate people that talk too much. I start to lose interest.
We need a series on GUI development in C++. Thank you for the good work
Coming Soon on My Channel
I think I’ll have to give you 20% of my future company for helping me this much!
What will your company produce?
I have a plan to build a company where people will enjoy working, a healthy and good environment and a lot of opportunities.
I would lead with my example, motivate and inspire everyone!
I'm currently working on a side-project in my free time.
There are three of us, and the goal is to build software that will help small businesses to enter the market and find their customers.
I know how difficult it was for me to reach people when I first started my YT channel, so I want to help others as much as I can.
If that project succeeds I'll gladly share my experience and advice here on youtube. ❤️
@@amosreginaldjr.4200 Nice dream. i have bit similar dreams as you have. Best wishes for you.
@@BluCasper thank you a lot, I wish you all the luck as well!
I have a product in mind as well. Let me know if you guys are up
@@mazhar5721 let us know lol
I am artificial intelligence student but i never learn anything from my university but when i starts watching your video s now i am much better in coding thank you soo much saldina i am very grateful to you
This has got to be one of the most generous and useful channels to learn programming, the whole time I have been using UA-cam to learn. I don't know how much you make from these videos, but what we gain is definitely substantial. Thank you so much for posting these videos. They are quite valuable.
Best teacher in C++ practical so far .Ma'am continue with your work ♥️♥️
Hi CodeBeauty! I watched your tutorial titled "C++ FULL COURSE For Beginners (Learn C++ in 10 hours)" and just fell in love with it. You are such a mesmerisingly awesome teacher. I am a C++ newbie but want to become a C++ Super Hero in no time. Longingly waiting for your upcoming C++ GUI app tutorial! I want to build wonderful C++ GUI aps from scratch that run with lightening speed on any PCs. Many many thanks for your wonderful tutorials!
@m o t i 😒
Hiii 🍓 🍓
Please stop calling people SIMPs 🙏
I really work hard and try to add as much value to my videos as possible, so there is no reason for someone to write a comment thanking me unless they really benefited from the video.
It's superficial towards me and that other person.
I hope you are also learning from the video because if not, you'll definitely have more fun on some other channel, and the "SIMP" comment will be more appreciated.
@m o t i Wow, what a knob!
@@nifares8744 mo ti ra ndi
Are You A Super Hero Now?
I just started teaching myself last month,,,for sure this is the best channel.and I love my teacher Saldina for creating variety of c++ videos which are changing my coding abilities💯💯,,,keep doing more videos for c++ and real world programming videos🎉🎉🎉,,, thank you so much Saldina🙏🙏
Hi mis engenier i am an informatical student from mauritania,i'am happy to watch your chanel,and i want to tell you that your explanation is very helpful,i have never understand with my teacher but with you every thing is easy ,thank you ❤
Best teacher for CPP.... Thank you
Thank you guys! ❤️❤️
Bot comment removed. I have no idea what kind of link that was, removing it so that people don't click accidentally, it could be a virus.
Excellent explanation. My English is intermediate, but your pronunciation is strangely clear. I did not need to stop and go back. Thanks
Your ENGLISH is the best I ever listened, and your explanations have so precise meaning that any improvement is imposible
I came from the freecodecamp YT channel and watched your OOP tutorials. It was very good! I came here as soon as I finished watching. I am so done watching the basics of C++ and now I will stay here on your channel to do some projects. Thank you for doing this :)
listen the software she said to download is it really 7 gb file or its just in mine?
At last!! Something related with GUI. Thanks, Saldina. Love your videos! 🥰
You're so welcome! ☺️🍓
Your channel is gold, thank you for all the knowledge you share with us. Also, your intro is very cool!
Ya that's what I was waiting for GUI thanku so much 💕💕
My pleasure 😊💕💕
I excelled in the distinctive explanation and gradation in providing information This is how we can build desktop applications on what we learned in traditional C++ programming🙂
now switch to C# and join my Practical Programming Course at www.codebeautyacademy.com
Here we will build real desktop application, similar to those that you will be building as developer.
I'll be happy to have you as part of my community. :)
Here's my code to fix the bug for being able to add blank tasks to the task list.
void __fastcall TForm1::AddButtonClick(TObject *Sender)
{
String taskText=TaskEdit->Text;
if (taskText!="")// If the task edit box is not empty
TaskListBox->Items->Add(taskText);// then add text
TaskEdit->Text="Please Enter Another Task";
}
My next goal will be to program the click to remove the text that it prints after the first task is entered.
I am new to coding and programming but I'm learning from your videos. I just finished the 10-hour video! Thanks for your hard work putting these together!
blank space is still counted as text in coding
You have Filmed at 3am and I am watching at 4:40am for upcoming project. Hats 🎩 off to you 👏
You speak a very clear English, I will use your videos to make listening lessons. :D (I also like programming)
you're like one of the best teachers I've met so thank you
Such a clear and pertinent explanation, delivered promptly without a single "uh..." clouding the air. This is good.
This is nothing compared to the course that I'm preparing. I'm replying to your comment during the pause between editing videos, and I can't wait to share it 🥰❤️
You re telling me ive invested so much time into learning python gui writing everything thinking they re the easiest to make till i saw this . (great video .. )
😁😅🤗
Delphi is even easier :D
Mam when I see your videos it's motivate me toward software engineering and to become something in computer world but I am lazy in stduy and coding😭
Fir kuch nahi ho bhai tera
@@kuldeeprane1469 it's doesn't mean that I am not good in coding but I am lazy I don't give the time
Hahaha, one of my professors at university used to say: if you want something to be finished fast, give it to a lazy person. He'll find the fastest way to do it. 😁
@@CodeBeauty Hahahah Thanks Mam it's mean I am something 😎
One of my favorite software development channels on UA-cam.
🙏💙
This is a great video and a needed help for every new programmer in the world ,and not only that ,you were also able to create a place where future programmers can meet and exchange opinions and future plans ,so from the deepest part of my heart I say thank you for what you are doing and please keep doing it ❤️❤️❤️
For years I wondered how to make gui's and learn Arduino or raspberry PI. Now I think I'm going to try learn... Super thank you
You can try it in C# with this recent video, it is even easier, and I use Visual Studio, which is free: ua-cam.com/video/AYBkwFen5Ns/v-deo.html
@@CodeBeautyit is Asking Serial number. Please help 😢
I have just stumbled upon your videos and I think they are awesome 🎉❤ from now on you're my number one lecturer ❤❤❤❤❤❤❤❤❤❤❤
Now THIS!!! is what I was looking for!
People who teach Coding leaves you after teaching the programming languages BUT this woman teaches how to make applications!
Good Job @CodeBeauty my Respects.
Is it very interesting video.
You should add couple of another functions.
1. Once you click on task, it should ask you whether you want to delete the task. Otherwise, people can click accidentally and all task gets removed.
2.it is also good to add a function of correcting task. Or adding something to it.
I really enjoyed watching this video. Thank you ❤
Those are excellent ideas!
CONGRATULATIONS YOUR ARE THE BEST C++ TEACHER EVER. THE MOST BEAUTIFUL VIDEO ON THE NET. SEE YOU SOON.
Looking forward to see how to make GUI apps in VS Code.
in this year, this channel gonna hit 1 million sub
🙏💙
That's what I was waiting for. You're awesome teacher.
Thank you! 😃🍓
I'm lesrning Qt. Didn't know this existed :).
I love the community. As an electrician this isn't much of a community, just you, your boss, and the coworker and only 2 ways doing it, wrong or right.
Programming, there's 3 ways of doing things, copy paste, invent a new way, and the inefficient way you were shown. That's the thing, you cna do anything with a program. And if you grt stumped, someone will literally come around and help you
This is what I've been waiting for
yes metoo really
❤️
❤️
Saldina, we love you! :)
I love you all! ❤️❤️❤️
gave it a thumbs up "filming at 3am" love the video
So excited for your C++ gui series....You are one of the few great people who dare to leap...
Thanks alot!
Damn,my first gui app was in win32, this tool make it so easy to do gui, all the draw call made automatically, doesn't have to deal with windows messages nor registering the window class. Definitely a faster way to do gui.
Thank you!
Really want to learn more GUI development skill of C++ Builder
Really informative without being redundant or long-winded, great video
Add button click can drop the redundant int and just use the Item->Index, like this TaskList->Items->Delete(Item->Index);
and in TaskAddButtonClick
if (NewTask->Text != "")
{
TaskList->Items->Add(NewTask->Text);
NewTask->Text = "";
}
Great job, I really need it. Thanks a lot
You're welcome! 🍓
can you do more videos like these? i been learning so much from you
Hey Saldina, I would love to see another C++ GUI application tutorial (a full tutorial would be much more appreciated). Can we do it on Visual Studio?
Find tutorial how to start GUI project in VS. It will be shown how to configure project to run. Then you can easily continue with Saldina's tutorial.
Wonderful seeing how builder has evolved and maintained it's ease of use.
Thanks for helping with such a good c++ tutorial
You're very welcome! ☺️🍓
That's really very great. I learned alot from here Teacher. Thank you so much. God Bless you 😊.
Build in 10 minutes but i have to watching more then 10 minutes and try to building more then 2 days. Thank you 👍
That is normal if you are leaning. Practice and repetition is the mother of learning, the father of action, which makes it the architect of accomplishment. 🤗🤗
You made this super easy to understand. thanks for teaching
RAD Studio from Embarcadero
I honestly think that to motivate me to program better, doing GUI first and foremost with input control would have made things easier for me.
You finished your video with a challenge to find how to prevent the ADD button to put a blank line in the List Box. What I did was separate the two major operations you did with more space and then inserted an If-else operation so the it came out as follows: if(taskText == ""){ MagLabel->Text = "No TASK Entered"; } else { TasksListBox ->Add(tasksText); MsgLabel->Text = "Add Task"; TaskEdit->Text= "";} The original MsgLabel (upon starting the program was "Add Task" so that was reset to show that no task was entered. It works fine. VTS
this way to write GUI is so cool
Yep ☺️🥰
Another excellent c++ training video. And now coding with GUI, that is great 👍, Thank you and Congratulations 👏
Greetings,
They way you are explaining is outstanding...
I am doing PYTHON-FLET, KIVY, TKINTER for designing GUI...
But I will try this too as I have started learning in C++..❤
i would rather suggest that you try C# instead of C++ because currently there is higher demand for C# developers. Check my Practical Programming Course at www.codebeautyacademy.com
We are building real C# application and you will be learning alongside other students, with me as your personal tutor. With this you will also gain access to exclusive Discord community.
I'll be happy to have you there. :)
I love the this tutorial!
I would like to know how to use/implement the created GUI with C++ builder into the main project in visual studio.
I have a lot of more videos to watchfrom your channel, but I would love to fill that gap :)
I am programming c++ in unreal engine but as a self taught I have a lot of black holes in my learning path and because there is not a clear route plan for learning....as all I learned in everything I just start learning a bit randomly trying to resolve specific problems and along the time all the knowledge starts to get stronger for multiple purposes :)
Thanks you for your time and effort in every video you make. I LOVE THEM and you are helping a lot of people with this
TaskListBox->Items->Delete(Item->Index) .. for one, second .. check if the TaskEdit->Text->(string length) > 0 ?.. perhaps.. PS, i just subscribed ;)
Yea VCL is pretty much Delphi, which C# is based on. Much easier to use than other GUI libraries.
Another good video. Helpfull as always! It reminds me Delphi so much!
Sorry, I expected Visual Studio. The c++ asking serial code even though I selected the trial one. That's a;right. Nice explanation 👍👍
oh my, I wish this was Visual Studio tutorial, I be so happy.
Great that you introduce C++ Builder . . .
I do not know to code (yet... I'm on Odin Project) but I realli like this video.
The solution to the bug at the end of the video seems to me an If situation... "if" that field = 0 then ... something like that.
I really wanna learn C/C++, later.
Thanks for the channel. Bookmarked
Great video. tnx. Please Do more of GUI c++ videos.
Very nice overview of C++ Builder!
subscribed. trying to learn c++ and i want to develop apps, this is great!
Welcome 🥰
its 5am...& I'm watching your great video 👍🏽
Brings back memories of when I first got a copy of this SW back in my University days (1994). Back then it was Borland C++ Builder v1.0, I still have the install media😉… great channel Saldina 🌸 all the best from the 🇬🇧… hope you got some sleep 😴
Wow, I was born in 95, and my University was in 2013. I also have a lot of nice memories and nostalgia for that time. ❤️💚🍓🍓
@@CodeBeauty I was also born in 95. Cheers!
Some companies even today are using Borland Builder 5.x.
I was still writing my Windows GUI apps in VB at that time; made the jump to C++ Builder at version 3.0 and never looked back. I always said that C++ Builder is what Microsoft VC++ should have been, not that MFC nightmare. I am actually shocked that C++ Builder is still around - I've been a back-end dev for many years now, so I long since drifted away from GUI apps, and with the way things are in the industry one is lead to believe that Visual Studio is the only IDE around anymore for Windows development. I'm tempted to grab a license for C++ Builder, but I can only imagine the sticker shock of how much it costs. Borland's pricing model was bad, but when Inprise took over it actually got worse. No idea how Embarcadero prices its products.
Love your videos about c++ :) I have a question, could I use Visual studio instead of this IDE?
Yes you can, but you have to download also the UWP Universal Windows Program extension.
@@Cesar33-pl Or use MFC, or .net for creating win32 (not UWP) apps.
I really appreciate your work wish you more success in your life 😊
ua-cam.com/video/XvmrfUjdiX0/v-deo.html
This is a very helpful video thanks to you I gain new C++ skills. By the way I couldn't fix the bug I thought that we can use if condition but defining the condition is trickky.
I solved it with multiple if conditions :
String taskText=TaskInput->Text;
if(taskText != "")
{
TaskListBox->Items->Add(taskText);
}
else
{
ErrorLabel->Text="You can´t input an empty field!" ;
}
if(ErrorLabel->Text != "" && taskText!= "")
{
ErrorLabel->Text = "";
}
TaskInput->Text="";
//Error label is an additional Label that displays said text.
//Here is code for the bug this creates when clicked on boxitem
int index {Item->Index};
TaskListBox->Items->Delete(index);
if(ErrorLabel->Text != "" && TaskInput->Text == "")
{
ErrorLabel->Text = "";
}
Basically you just ask when button is clicked "is taskText empty?"
if yes display message
if no add items to list
This will be awesome ☺️
☺️🍓🍓
Surely, I'll give thumbs up to you because of your effort to teach new things to me even at 03:30 am. You are great! Thank you dear !:)
Thank you
You're welcome ☺️🍓
nice.eaay to follow. now we need how to create professional looking GUI.
Hvala Saldina na ovom videu, mnogo mi znaci!
The best C++ teacher
Thank you! ❤️🍓
Thanks for making these videos they are the best available. I have one question, will the C++ Builder Community Edition work for all of your tutorials?
Thanks for sharing your skills with us
Thank you For everything
☺️🍓
I really appreciate your tutorials. I would like to see some tutorials on source code analysis. Source code in real life, something like a web server or some other interesting open source projects. If the open source project is too difficult for beginners you can pick some easy parts from it. Or maybe you can guide us to mimic a simple version of original project. This is kind of project based learning. The key is picking an interesting project cool project. Thank you teacher.
26:32 , just check if the user input is empty and "return" in there.
Someone's time machine is working. I was going to give this video a like but it turns out I already watched this video and I already gave it a like.
Nice. White comment just because you always answer and I like it.
Hahahha, me too :D
I try to reply to as many people as I can, or at least I read all the comments if I don't have time to reply.
Thanks for the support! ☺️🍓
The way this guide is done is good and really easy to follow but, non of this applies outside this severely software, which you most likely will not encounter in the work place. I think it would be much better to make guides for Visual Studio etc. which will carry over to other systems much better. Otherwise, you might as well teach people how to program in scratch or other visual languages because it will be just as useful outside that program. This for instance will not transfer to Qt or Gtk etc. which are much more widely used but also use very different systems.
Please make a playlist on desktop app development using c++
Your videos are awesome !!!
Please do video on C++/Winrt
Thanks in advance
A Bret Victor style IDE would be a great exercise. Interactive programming is the future!
I would recommend that you censor your personal information (at the guide how to download the installer), especially things like phone number.
Yep, I'm trying to send a message - please call me at 3 am, I'm not sleeping anyway, I'm filming a video. 😁
Thanks, it's and old email and phone number.
And people also have more chances that I'll reply if they leave a comment on my video, than if they call me from an unknown number. ☺️🍓🍓
@@CodeBeauty hey baby, my number is #1. Call me anytime :D . Jokes aside, I've been using C++ builder almost from the beginning.
@@CodeBeauty hello, I am curious to know why you used this program and not MS Visual Studio? Isn't it that the way to make GUI C++ application is to use the ancient Microsoft Foundation Classes or the wierd C++/CLI?
@@優さん-n7m ikr
@@isMeStranger What is ikr?
Really great video for learning GUI app using C++
Thanks for giving me the hint. am new to programming
this tutorial is very good💜💜
use if else and ... if string = " " , then return; else add
to solve empty string problem😉
Thank u soo.. much sister ❤️
Thank you very much.
You are welcome! ☺️🍓
Thank you. If possible please do a video on DevOps
Excellent Thank you, regards and Jesus' Blessings from Lima Peru.
Waiting for this
☺️☺️🍓