Office 2003 Pro.
I am creating tables in Word and then adding text to these tables and
formatting.
Qu.1
------
This example shows 2 bits of text going into one cell. What I want to
do is then make "Title text" bold, and I end up always setting the
whole cell bold. How should I do this without using an extra row for
my title ?
Set rng = objWord.ActiveDocument.Tables(intTable).Cell(1, 1).Range
rng.Text = "Title text"
rng.Text = "Some more text"
rng.InsertAfter (strUnit)
Qu.2
------
My table has multiple rows and combination of x1 column or x2 columns:
Is it best to create all x1 column and use cell.slit or create all x2
columns and use cell.merge,... or it doesnt matter ?