The Picturebox control is the most useful if you're working with fonts and characters because you can insert any character from Microsoft Word (thousands of symbols).

For example, to put the 'Ear' symbol in your picture box:

Private Sub Form_activate()
Picture1.Font = "webdings"
Picture1.Print "O"
End Sub

However, I can't find any subscript symbols in the Word Font box. Is there any way of way of getting a subscript symbol into my picturebox?

Thanks for any help.