Over the ~18 months that I've been learning and practicing writing code, I've continuously run into an issue regarding the seeming lack of information on actually creating a program. It seems like there are plenty of resources on how to write code, but I've never seen anything that shows me how to get the code I've made and create an application which can be clicked on and executed. Where do I learn said thing?
Creating an executable program for dummies
1–3 of 3 posts
Re: Creating an executable program for dummies
#2https://developer.microsoft.com/en-us/windows/desktop/getsta...
For a more hands-on approach, see this practical example where you use Microsoft Visual Studio (it's the IDE for Windows development):
https://msdn.microsoft.com/en-us/library/jj153219.aspx
Visual Studio is pretty much mandatory if you're serious about developing for Windows. Download the free version, Visual Studio Community, here:
https://www.visualstudio.com/vs/community/
For LOTS of references, sample codes and much much more, see the amazing MSDN, e.g.
https://msdn.microsoft.com/en-us
https://code.msdn.microsoft.com/site/search?f%5B0%5D.Type=Pl...
https://code.msdn.microsoft.com/How-to-run-Hello-World-bd5d7...
https://code.msdn.microsoft.com/Creating-CRUD-application-1b...
Re: Creating an executable program for dummies
#3You mean an executable that you run on your local PC? There are MANY ways to do that on Windows. Start here by reading about the various approaches that Microsoft recommends: https://developer.microsoft.com/en-us/windows/desktop/getsta... For a more hands-on approach, see this practical example where you use Microsoft Visual Studio (it's the IDE for Windows development): https://msdn.microsoft.com/en-us/library/jj153…