I have connected to Excell with ActiveQT.
I need to merge several Cells. I know only numerical coordinates of cells range like (5,5) (10,10)
tried this
Qt Code:
  1. QAxObject* ExcelCell=ExcelCells->querySubObject("Range(Cells(int,int),Cells(int,int))",5,5,10,10);
  2. ExcelCell->dynamicCall("Merge");
To copy to clipboard, switch view to plain text mode 

but this does not work.
What is the right way?
Please show me the sample please.