S
Sukhi
I have created table
..Tables.Add rBMRange, 3, 4
populate it
rBMRange.Tables(1).Rows(intRow).Cells(1).Range.Text="xyz"
rBMRange.Tables(1).Rows.Add
intRow = intRow + 1
...
Now I want to get out of table and carry on typing --
rBMRange.Collapse Direction:=wdCollapseEnd
rBMRange.Text = vbCrLf
rBMRange.Collapse Direction:=wdCollapseEnd
This does not seem to work, it seem to put the values in Row1, Cell1.
what am i doing wrong?
..Tables.Add rBMRange, 3, 4
populate it
rBMRange.Tables(1).Rows(intRow).Cells(1).Range.Text="xyz"
rBMRange.Tables(1).Rows.Add
intRow = intRow + 1
...
Now I want to get out of table and carry on typing --
rBMRange.Collapse Direction:=wdCollapseEnd
rBMRange.Text = vbCrLf
rBMRange.Collapse Direction:=wdCollapseEnd
This does not seem to work, it seem to put the values in Row1, Cell1.
what am i doing wrong?