Remember that it's all just numbers, if you want to check if a byte contains 'I' either of these will work
IF myByte = 73 THEN....
If myByte = "I" THEN....
IF myByte = $49 THEN....
IF myByte =...
Type: Posts; User: HenrikOlsson; Keyword(s):
Remember that it's all just numbers, if you want to check if a byte contains 'I' either of these will work
IF myByte = 73 THEN....
If myByte = "I" THEN....
IF myByte = $49 THEN....
IF myByte =...