Creating a copywrite character in window header
BlitzPlus Forums/BlitzPlus Programming/Creating a copywrite character in window header| 
 | ||
| I am writing a program (Blitz plus) for someone who wants a copywrite symbol included in the the window title itself- I hate to tell people 'it can't be done' any ideas much appreciated?- Steve | 
| 
 | ||
| Use the ASCII code (169 for the copyright symbol) and the Chr$() command: AppTitle "Title "+Chr(169)+" Title" | 
| 
 | ||
| ...or hold down L-ALT and hit "0169" on the numeric keypad. | 
| 
 | ||
| Great Thanks! I was thinking along those lines but the ASCII codes listed in my Blitz+ command ref only go to 127.... | 
| 
 | ||
| as a side note, the copyright symbol is 184 © the 169 the ® is registerer trademark |