c++ - How to create-edit-remove excel files? -
i doing project has simple values(login,password,name,age). searching on internet how create excel file on visual c++, , cant undestand . want simple way, want see on excel files 2 colums 1 having login codes of program , on other passwords. programing level not high , im not english speaker, id guys explain bit or give me simple.
thanks time
if want simple file 2 columns of data, i'd make csv (comma seperated values) file, can opened in excel, or text editor. csv "nice" in excel, if actual xls file. also, won't tied microsoft office. file can written simple string manipulations , file i/o.
the format :
column1,column2 data1,data2 data3,data4 however, , big one... storing usernames , passwords in plain text never idea.
Comments
Post a Comment