c++builder在用ole导出表格到word(用的妖哥的方法)
为什么我在表格后面加内容的时候,总是加到了表格的第一行第一列呢?
C++Builder Word
//插入表格
vWordApp.OlePropertyGet("ActiveDocument").OlePropertyGet("Tables")
.OleProcedure("Add",vSelect.OlePropertyGet("Range"),
nRowCount, // 行数
nColCount, // 列数
1, // DefaultTableBehavior:=wdWord9TableBehavior
0);
// 操作这个表格
vTable = vWordApp.OlePropertyGet("ActiveDocument")
.OleFunction("Range").OlePropertyGet("Tables").OleFunction("Item", 1);
....