Acessing excel (*.xls) in vc++
-
Hi, I want to copy the complete data from an excel sheet to another excel sheet.And also serach for the specific data from the specific column and copy down the data to the excel sheet. Is there any possible way to do so? Thanks a lot in advance. Chetan. Helping others satisfies you...
-
Hi, I want to copy the complete data from an excel sheet to another excel sheet.And also serach for the specific data from the specific column and copy down the data to the excel sheet. Is there any possible way to do so? Thanks a lot in advance. Chetan. Helping others satisfies you...
Hi, You can convert that xls to csv and parse it to read the specified coloumn ,this would be the fast mechanism if the data to be read is huge, or else you can use automation . Regards, FarPointer
-
Hi, I want to copy the complete data from an excel sheet to another excel sheet.And also serach for the specific data from the specific column and copy down the data to the excel sheet. Is there any possible way to do so? Thanks a lot in advance. Chetan. Helping others satisfies you...
http://www.codeguru.com/cpp/data/mfc_database/microsoftexcel/article.php/c4307/[^] maybe it is some helpful to you
-
Hi, You can convert that xls to csv and parse it to read the specified coloumn ,this would be the fast mechanism if the data to be read is huge, or else you can use automation . Regards, FarPointer
hi, Thanks for reply. There is a .xls file. i tried to open it using fopen but i realized that excel file is a binary format file and could not be opened using fopen. I have to use .xls file. i cannot use .csv file. I have no idea about automation. could you please refer some links, which helps me. Again thanks a lot Chetan. Helping others satisfies you...
-
http://www.codeguru.com/cpp/data/mfc_database/microsoftexcel/article.php/c4307/[^] maybe it is some helpful to you
Thanks, i will go through the link. Helping others satisfies you...