I have an advaned labeling expression that is supposed to label a special ASCII character (Alt+26, Alt+27 [left and right arrow]). However, nothing labels. The expression verifies, but nothing shows in Verify either. I remember this used to work in a previous version of ArcGIS, but so far it's not working in ArcGIS 10.
Any help or point me in the right direction will be appreciated! Thank you!
Any help or point me in the right direction will be appreciated! Thank you!
Code:
Function FindLabel ([Dir])
IF ([Dir] = "A") THEN
FindLabel = "→"
ELSEIF ([Dir] = "B") THEN
FindLabel = "←"
END IF
End Function