
This is the intro to the Win32API Intro by Ebonygeek45
The introduction is explaining the very basics of the course. It is strongly advised to use Visual Studio C++ for your practice and example code.
Get ready to get hooked by the programming but. It can be highly addictive. It can also offer you a sense of accomplishment and understanding. .
Rumor has it that Visual Studio is un- user friendly. It is all in the way you think of it. If you go into something thinking negative, you will likely have negative results.
Visual Studio c++ is a great tool and specifically for the many debugging tools it offer. Like I said, if you are developing windows you should use windows development tools.
This is not hard, It is actually fun once you get the hang of it. Follow the examples here to learn how to start making friends with Visual Studio C++.
When starting your program make sure to bookmark and add notes. Notice the zoomed in code that comes out for each line to be typed. It is to help you see the code correctly as you follow along.
This lecture is dealing with starting a project that you will later reuse as starter code. This can be extremely useful when you have that great idea and are ready to code. The starter code is there for you copy it and paste it into your new project. Then you can start programming your program right away without the distractions of what is in the starter code(or little sneaky bugs that seem to create themselves at just the wrong time).
Nothing is worse then forgetting a great idea because you have problems with starting from scratch.
There is no point for that to happen when you could have good starter code waiting for you to use
This is not only main it is WinMain. That is main with an attitude.
WinMain of course is the driver to our program. It is where our parent
Window will live, and where it all starts. We're just going to take it
slow and keep it moving. Come in for the next part of our journey.
This is something that anyone can do. It is simply downloading the program and installing it to your computer
https://www.visualstudio.com/vs/cplusplus/
This course is about creating Windows. Then customizing your windows to fit the needs of your program. (Your program not included). This means showing you how to add controls to your window, then add the logic to those controls to do what you need them to do.
This is without the use of a UI, Your code for the most part will create and control your window.
This is important so that down the line if you should decide to branch into UI's you will have the underlying knowledge of how it works under the hood(so to speak).
So, take the course and learn with us.