Steve-vfp9user
Programmer
Hi all
I have created a good word automation process for part of my app. Here is some of the code:
My question is, how can I underline one line of text (Maybe the one shown above in bold).
I have searched the forum but can't find the answer.
Any guidance would be appreciated.
WIndows 10, VFP 9 with SP2
Thank you
Steve
I have created a good word automation process for part of my app. Here is some of the code:
Code:
oRange = oDocument.Range()
oRange.Font.Name = "Arial"
oRange.Font.Size = 11
[b]oRange.InsertAfter("Quote Ref: " + CHR(9) + alltrim(myfield))[/b]
oRange.InsertParagraphAfter()
Etc.....
My question is, how can I underline one line of text (Maybe the one shown above in bold).
I have searched the forum but can't find the answer.
Any guidance would be appreciated.
WIndows 10, VFP 9 with SP2
Thank you
Steve