Thread: Vc++6gui

  1. #1
    Unregistered
    Guest

    Vc++6gui

    How do you make a Windows Form in VC++ 6.0, like in VS.NET ?

    If you begin a new Windows project in VC++ 6.0,
    there is no Form to drag on controls like buttons and labels ...

    ..............

  2. #2
    the hat of redundancy hat nvoigt's Avatar
    Join Date
    Aug 2001
    Location
    Hannover, Germany
    Posts
    3,130
    uhm... the exact same way. You create a new dialog-based MFC Application and drop your stuff on the form. Could you be somewhat more precise on what you did in VS.NET and how you did it in VS 6 ?
    hth
    -nv

    She was so Blonde, she spent 20 minutes looking at the orange juice can because it said "Concentrate."

    When in doubt, read the FAQ.
    Then ask a smart question.

  3. #3
    Registered User
    Join Date
    Jan 2002
    Posts
    387
    Its called CODING, not this Drag-And-Drop VB-Style $hit, To create a button you go:

    CreateWindowEx(0, TEXT("BUTTON"), TEXT("THIS IS MY BUTTON"), WS_CHILD | WS_VISIBLE | BS_PUSHBUTTON, 0, 0, 100, 30, hwnd, NULL, hInstance, NULL);
    "There are three kinds of people in the world...
    Those that can count and those that can't."

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. How to show line no in VC ++
    By mpushkar in forum Tech Board
    Replies: 1
    Last Post: 12-17-2006, 09:33 AM
  2. makefile exported by vc 6.0 doesn't work
    By wow in forum Windows Programming
    Replies: 7
    Last Post: 03-24-2006, 04:20 PM
  3. Can't compile this with VC 6.0
    By uriel2013 in forum C++ Programming
    Replies: 4
    Last Post: 05-31-2003, 07:43 PM
  4. VC 7.0 and templates
    By Mongush in forum C++ Programming
    Replies: 12
    Last Post: 03-11-2003, 10:32 AM
  5. Why VC?
    By Unregistered in forum Windows Programming
    Replies: 1
    Last Post: 04-15-2002, 05:24 AM