Maybe if you show what the received string looks like when you receive it, we can find the problem.
One problem which I see is that you`re actually generating a non-delimited string i.e.
12.2234.4412.32 for the numbers 12.22, 34.44 and 12.32. Try
s=str(i)+", "str(i+1)+", " and so on.
This should produce a string of
12.22, 34.44, 12.32,
You can then split the string into individual numbers using the commas.
Shane
Using LV 6.1 and 8.2.1 on W2k (SP4) and WXP (SP2)