i have a vb6 application that want to write into a Word document. My document is a pre-saved template which has already a table (1 row 3 columns) created in it with a bookmark at the first cell...

my question is how do i iterate through the cells of my table from my bookmark and create a new row each time i iterate through all 3 cells of the current row.

i tried oDoc.bookmark("bookname").range.next but it only seems to work if i didnt insert any text in the cell before, other case, it doesnt iterate and write in the same cell

help please..this is very frustrating