I am trying to set the text in a Powerpoint text box to Chinese characters from a .txt file encoded in UTF-8, using VBA. Currently, I have
Set TradBox = Current.Shapes.AddTextbox(msoTextOrientationHorizontal, 0, 0, 500, 250)
Set SimpBox = Current.Shapes.AddTextbox(msoTextOrientationHorizontal, 0, 250, 500, 250)
TradBox.TextFrame.TextRange.Text = DataLineTrad
SimpBox.TextFrame.TextRange.Text = DataLineSimp
Where DataLineTrad and Simp are strings of Chinese characters. This results in gibberish, like 禮讓. How can I change the text box so its encoding matches the text I am trying to enter?