Engineer Joe
Well-known Member
- Joined
- Jun 10, 2005
- Messages
- 549
I'm making a string array to reference for a combo box in a user form. It should be this:
Array("=","<",">","≥","≤")
However, if you'll notice, the last two characters (≥ and ≤) won't go into the array in the vbe. A simple copy/paste into the vbe yields last two characters as equal signs (=), just try it.
Furthermore, the ASCII code for ≥ is ALT+242, but entering that directly into the vbe also yields the equal sign. So the question is, how do i load these characters into the array above when the vbe simply doesn't recognize them?
Thanks in advance.
Array("=","<",">","≥","≤")
However, if you'll notice, the last two characters (≥ and ≤) won't go into the array in the vbe. A simple copy/paste into the vbe yields last two characters as equal signs (=), just try it.
Furthermore, the ASCII code for ≥ is ALT+242, but entering that directly into the vbe also yields the equal sign. So the question is, how do i load these characters into the array above when the vbe simply doesn't recognize them?
Thanks in advance.