Visual Studio 2022, Forms, using C++

Bryan Kelly 486 Reputation points
2023-11-09T21:05:39.5933333+00:00

The goal is a project that shows an involved math function one step at a time.  It will need a scrollable column of values to show the progress of the operation.

I “think” a viable option is “Forms” but am open to suggestions.  The tutorials I find are step by step, but the options are not available on this computer under this VS 2022.  I have never used C#.

Example:  Start a C++ project for CLR or .NET.  There is no option for either of those. 

In the dialog “Create a new project,” in the search box, enter “.net c++” and it provides options for C#, Visual Basic, and even F#, but not C++.

Please suggest a graphics utility that can be used to show multiple numbers in a column that is scrollable.

Thank you for your time.

Developer technologies Windows Forms
Developer technologies C++
{count} votes

Accepted answer
  1. WayneAKing 4,931 Reputation points
    2023-11-10T22:02:54.2066667+00:00

    >Please explain the difference between “document” and “dialog” in this option box.

    SDI and MDI

    https://learn.microsoft.com/en-us/cpp/mfc/sdi-and-mdi?view=msvc-170

    "MFC makes it easy to work with both single-document interface (SDI) and multiple-document interface (MDI) applications."

    Creating an MFC Application

    https://learn.microsoft.com/en-us/cpp/mfc/reference/creating-an-mfc-application?view=msvc-170

    Working with Dialog Boxes in MFC

    https://learn.microsoft.com/en-us/cpp/mfc/life-cycle-of-a-dialog-box?view=msvc-170

    MFC C++ How-To : Creating a Dialog based Project Video 2

    https://www.youtube.com/watch?v=gsZ1diRJtJA

    Visual C++ Beginner - Create simple dialog based app for Windows 11

    https://www.youtube.com/watch?v=eMvHLPhQa2o

    • Wayne
    1 person found this answer helpful.
    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.