Smarticon To Choose And Insert Any Character.

This code, in a SmartIcon, will allow the selection of a character to be
inserted into a document that is being edited. It could be smartened up but it
does the trick and avoids having to use the keyboard to insert special
characters.
REM "Insert Selected Char" ;
REM "Author: Tony Carter" ;
REM "11 December 1997" ;
REM "Allows selection and insertion of any char (0-255) into text field" ;
@If( @IsDocBeingEdited ; @Success ; @Return( 0 ) ) ;
intEnd := 255;
strN1 := @Text( 0 : 1 : 2 : 3 : 4 : 5 : 6 : 7 : 8 : 9 ) ;
strN2 := strN1 *+ strN1 ;
strCharList := @Subset( strN2 *+ strN2 ; intEnd + 1 ) + ": " + @Char(
@TextToNumber( @Subset( strN2 *+ strN2 ; intEnd + 1 ) ) ) ;
strC := @RightBack( @Prompt( [OKCANCELLIST] ; "ASCII Chars" ; "Select a
character" ; "0171: " + @Char(171) ; strCharList) ; ": " ) ;
@Command( [EditInsertText] ; strC )

This was first published in November 2000

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.