Question: For c + + problem. I ' m using visual studio 2 0 2 2 . I just created a project, and for the home

For c++ problem. I'm using visual studio 2022.I just created a project, and for the home work, I need to put an Excel file into my file, in the bottom is my code to open the file, but I dont Know how should I add the excel file into the project. Should I add from sorce file? or add from project? #pragma once
#include
#include "menu.h"
#include "task.h"
#include "taskList.h"
using namespace std;
const string TASK_DATA = "task_data.csv";
enum COMMAND { ADD ='a', EDIT ='e', DELETE ='d', PENDING ='p', DONE ='c', EXIT ='x'};
class TaskMenu :public Menu {
public:
TaskMenu();
~TaskMenu();
void viewPendingTasks();
void viewCompletedTasks();
void addNewTask();
void editTask();
void deleteTask();
void activate();
protected:
void init();
void showOption(string title);
private:
fstream inFile;
TaskList* list;
};

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!