I code that imports Texts file into Excel and I then I have a script
that bolds the keywords. I want to move the text files to a user form
so it is easier for a user to edit the data. I found out I have to use
a rich text box in order make the keywords in bold. I can the open the
file with:

MyRichTextBox.loadfile("C:\TEST.TXT")

Then I still do not know how to make the keyword bold. And when I try
to save the text file it will only save as a Rich Text File. I tried

MyRichTextBox.savefile("C:\TEST1.TXT",RichTextBoxStreamType.PlainT=ADext)


But VBA does not like
RichTextBoxStreamType.PlainT=ADext

This only works MyRichTextBox.savefile("C:\TEST1.TXT") Then I get Rich
Text File data.

Can anyone help?