I need to build a string which contains Alt Codes, specifically Alt-16 (Arrow symbol). I have a line of text (aka a string). I append a Carriage return, then want an ARROW symbol and the new line of text. This line will then be passed to PPT. If I manually go into PPT, into a text box, I can hit Alt+16, and get the arrow symbol. This is what I programatically want to do. Alt symbols found here.
Here is what I am trying, but it gives me a totally different symbol.
line := line + #13 + Chr(VK_MENU) + #16 + NewLine;
How do I build a string with ALT Codes as part of the string?