CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Making a Form

  1. #1
    Join Date
    Apr 1999
    Posts
    12

    Making a Form

    Hi,
    I am an experienced VB programmer crossing over to MSVC 5.0.
    The main thing I see missing from this package is the Form editor.
    How do I make a form in MSVC? Also, how do I put controls on it?

    Thanks in advance,
    Hexie


  2. #2
    Join Date
    Apr 1999
    Posts
    20

    Re: Making a Form

    The only way to make a "form" (as you know it from VB) is with the dialog resource editor. This allows you to visually add *some* of the controls you are used to (though the interface is considerably different than VB). The form you create can be directly dropped into a dialog-based app, or you can map it to a class derived from CFormView in a Doc/View-based app.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured