Some of you beginners may find this code snippet useful. It explains how to convert Integers to Strings and back to Integers:
Strict Local a=123 Print a 'Convert into a string - doesn't need any special commands Local b$=a Print b 'grab a single char (the second one) Local c$ = Mid(b,2,1) Print c 'Now convert it to an Integer (needs the Int command) Local d = Int(c) Print d