Quote Originally Posted by UKIkarus View Post
I have just gone back over the notes for this program before I began writing it and I have noticed that the array is made up of "Bytes" meaning I cannot enter a space or " " since it sees it as a string or char and converts it to the decimal value any ideas?
Always keep this in mind, everything is made up of bytes, strings and things are just converted for our convinence to read. So you are correct, the " " IS repersented by some number, that is the number to check against.

But I would have thought using PBP, you could have a statement like t(2)=" ". that should be no different then t(3)="3".Of course this is different then T(3)=3 with no quotes. Am I wrong? good chance of that, but either way assuming I am not wrong, will work just fine.t(2)=" " means PBP will convert " " to some byte. then your check would be IF T(2) = " ". the key here may be in the quotes.