Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8045451
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T05:33:07+00:00 2026-06-05T05:33:07+00:00

I have been learning C# and use Microsoft Visual Studio which makes it very

  • 0

I have been learning C# and use Microsoft Visual Studio which makes it very easy and enjoyable to create windows forms with various controls like progress bars, drop down menus, file-system browsers etc..

Can the same thing be done with C, and are there any recommended programs?

(I have learned some C and would like to make graphical interfaces a step further than just in the console, I guess this is quite hard?).

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T05:33:09+00:00Added an answer on June 5, 2026 at 5:33 am

    The windows API was (and still is) a C API. Documented on msdn.microsoft.com.

    The simplest way to create a Windows application with a simple form, in C, without using any external frameworks is this program:

    #include <Windows.h>
    #include "Resource.h"
    
    BOOL CALLBACK   DialogProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
    {
      switch(uMsg)
      {
      case WM_INITDIALOG:
        return TRUE;
      }
      return FALSE;
    }
    
    int APIENTRY WinMain(HINSTANCE hInstance,HINSTANCE hNull, LPTSTR cmdLine, int cmdShow)
    {
      return DialogBoxParam(hInstance,MAKEINTRESOURCE(IDD_MAINDIALOG),NULL,DialogProc,0L);
    }
    

    The assumption is that, in addition to this main.c file, you use the Visual Studio resource editor to create a resource script file (.rc) with a dialog resource that you lay out your controls on.
    If you are using Visual Studio Express a resource editor is not included and you will need a 3rd party editor (they are available) to lay out the dialog.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am learning to use mysql for rails apps, and I finally have been
I have been learning Python2.7 for a little bit now. I'm using Windows 7
I'm learning WPF and have been trying to create a toolstrip. Is there a
I have been learning D, and am in particular very excited for it's Generic
I have been learning Ruby (Rails/Sinatra) and it's good very good but OMFG how
I have been learning to use Emacs for a little while now. So far
I have been learning to use prepared and bound statements for my sql queries,
I have been learning C# for the past few days for use with ASP.NET
I have been learning to use hibernate for a couple of months. I am
I'm not a very experience programmer and have been learning HTML/CSS/JS on the fly.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.