Im very new to Visual Studio, and the C language family in general. In fact I'm rather new to programming, but I've learned a bit by programming in Java for android in the last few months.
I want to write a very simple application that could run on at least windows XP and up without the need of the .NET framework installed on the machine and without putting the user through an installation process for such a simple app.
The application simply shows a dialog with some information about the system (Ip, domain, user, etc.) and that's about it.
I managed to do it in C# using the windows form template, the problem is that while it runs just fine in Windows 7 and up, it won't run on Windows XP because not every XP installation has some version of the .NET framework installed (or does it?).
I have read that in order to write an application that runs independently of the .NET framework I have to use non intermediate language like C++, the thing is I don't see a windows form template under the C++ drop down in Visual Studio and frankly I have little clue on how to even get started.
Could anyone please advice on how to go about this? Once I have an idea on how to start I think I'll be able to handle it from there.
Thanks in advance.