Kang Min Yoo
Kang Min Yoo

Reputation: 2383

How do I get a C program to work as a Windows Application Form?

Hi I am a beginner in C programming and I have made a C program that automatically logins into a website using socket programming, particularly made for UNIX systems. I am now interested in bringing this program into "life" in windows application form, so that it would be much easier to use. But I am clueless on where to start because I have never programmed in Windows before. A simple guide to what steps I should take would be very much appreciated. Thank You.

Upvotes: 0

Views: 207

Answers (2)

RedX
RedX

Reputation: 15175

You could use a library for that. For example i like Qt but it tends to be large but it is multiplatform. You could also use Win32++ for that. But it requires some reading since it is very close to the windows api (WinAPI).

Just for completeness there is also ATL, WTL, MFC, GTK (multiplatform), wxWidgets and some others i don't recall.

Upvotes: 0

Tony The Lion
Tony The Lion

Reputation: 63200

Get yourself a Windows installation and install an express version of the C++ IDE. In there you can create Win32 API applications from which you could start to build your app. You will need to use the Win32 API to build your form. This API is fairly well documented on the internet. Here is a website with some tutorials on it.

Hope this helps.

Upvotes: 1

Related Questions