From the course: Code Clinic: C++

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Solution overview: Information dashboard

Solution overview: Information dashboard - C++ Tutorial

From the course: Code Clinic: C++

Start my 1-month free trial

Solution overview: Information dashboard

- [Instructor] When I started coming up with the solution for this challenge, I knew that it was going to have three main parts to it, a web server that will handle the session, user interactions with the dashboard, and retrieving data. A way to store the data that will feed the dashboard, and a browser page itself that will display the dashboard to the user. As with my other solutions, I created an executable that runs from the command line. To demonstrate my solution to this challenge, I'm in the Exercise Files, chapter six, solution, Dashboard, 64 Release folder. The folder structure is different for this challenge than the previous ones for reasons I'll explain later. I type cmd into the Windows Explorer address bar to bring up the command prompt. To run the executable, I type Dashboard.exe, space, and the arguments that need to be passed to the executable and press Enter. The first thing my executable does is…

Contents