Coni Loving 21.Jan.03 01:25 PM a Web browser FreelanceAll ReleasesWindows 2000
I am creating a Freelance presentation using LotusScript, from a Notes database. In the presentation, I would like to have two lines of text where the top line uses a larger point size than the second line of text.
Here is a sample of a test I have run, and it works fine.
'Add top of chart 2 text
Set textobj = curPage.CreateText
textobj.Text = "First text line." & Chr(10) & "(Second line of text)"
'The chr(10) does work, I do not need to convert to <=
Set ClickObj = CurPage.FindObject("TextPlacementBlock5")
ClickObj.Insert textobj
I tried doing something like:
Set textobj1 = curPage.createText
...set the value
Set textobj2 = curPage.createText
...set the vaue
textobj2.font.size = 10
But now I am lost - how can I combine the two text objects and put them both into a textplacementblock? (I've decided not to share all my absurd attempts at concatenating these two text values, but I can say that none of them worked and all generated errors!).