i am trying to put the values into an excel sheet through QtActive's QAxObject. i succeeded upto getting a work sheet. Now the win32 API to set the value for a cell is
Some_Excel_Object xx=worksheet->Cells();
xx->item[row][column] = 5;
Here i got upto the "xx". But,I don't know how to implement the above second line. I will be very thankful to the person who sheds a light on this issue.