I would like to report a bug.
I need to use "▲" and "▼" in the macro.
Example of my case:
The macro works well.
But anytime I save the macro and load it next time these special character are replaced by "?" character.

I would like to report a bug.
I need to use "▲" and "▼" in the macro.
Example of my case:
If engTransString.State(pslStateTranslated) Then dstTransString.Text = "▲" + engTransString.Text Else dstTransString.Text = "▼" + dstTransString.Text End If
The macro works well.
But anytime I save the macro and load it next time these special character are replaced by "?" character.
If engTransString.State(pslStateTranslated) Then dstTransString.Text = "?" + engTransString.Text Else dstTransString.Text = "?" + dstTransString.Text End If
Hi ,
We need to specify the characters in unicode
If engTransString.State(pslStateTranslated) Then
dstTransString.Text = chrw (9650) & engTransString.Text
Else
dstTransString.Text = chrw (9660) & dstTransString.Text
End If
have a nice day
Thanks, this works.
Still would be more user friendly if macro editor would support unicode characters.
Thanks, this works.
Still would be more user friendly if macro editor would support unicode characters.