Excuse me for troubling you ....
The problem is not really solved . I'll tell you exactly what's all about :
This is my SMS routine :

buffer var byte[160]

send_sms:
Serout2 pinout,32, ["ATZ",13]: pause 1000
Serout2 pinout,32, ["AT+CMGF=1",13]:pause 1000
Serout2 pinout,32,["AT+CMGS=",34,"+40723302694",34,13]:pause 1500
Serout2 pinout,32,["test",26,13] 'text to send by sms
return

I have to send a SMS message via GSM .
Buffer is full of bytes: EA,FD,12,8A etc.
So, instead of "test" message, I have to take all 160 bytes from buffer and send only the second digit. My SMS should look like this: AD28
Excuse me once again for troubling you with theese little problems, but I am quite new into this. I have some applications so far, but ... as I told you I am at the begining,
Thank you !