Search code examples
vbaexcel

Dsplaying unicode in a Form


After much trial and error ,and with assistance from the community, the ability to use Unicode in a form has not been very successful. So the question is. Is there a method to have the ability to use Unicode within a form ? primarily in textbox control were a currency symbol like the Peso symbol(₱) will appear in a textbox. there are various ways to have it on a worksheet but in a form is an allusive task.


Solution

  • After much trial and error ,and with assistance from the community, the ability to use Unicode in a form has not been very successful.

    Says who? :)

    Private Sub UserForm_Initialize()
        TextBox1.Text = ChrW(8369)
    End Sub
    

    enter image description here