Characters into an array

                     {[glow]'Ch+'[/glow],100},

{[glow]'Enter'[/glow],1101000}};

The highlighted parts are junk. A character (stuff between single quotes ') is just a character, not a string. Without trying I would say the compiler rejects it, and even if it doesn't, your code wouldn't do what you want. Also, that you put characters into variables of type long is also very bad practice, specially if you don't do it out because of a conscious design decision. You should look up in your favourite C or C++ book what struct does. That's what you need here.

Korman