Die zahl einfach in einen String wandeln, übertragen und im Empfänger
wenn nötig zurück wandeln.

Code:
A = 12.123                                                  'add 1 to it
S = Str(a)                                                  'convert integer to strtring
Print S

A = Val(s)                                                  'convert strtring to integer
Print A
Gruß Richard[/code]