Aw c'mon folks... somebody else answer some questions for a change...

PBP doesn't handle strings... unless they're one byte long... so you have to be creative.

1. Assigning a longer string...

MyText var byte [5]

MyText[0]="H"
MyText[1]="E"
MyText[2]="L"
MyText[3]="L"
MyText[4]="O"

2. Serin will save to an array if you so tell it to. The result will be as per my example in 1 above.

Melanie