Hi all,
If we pass a very big string to function which is received in a string argument it gets trauncted or if we pass a string smaller than 256 bytes the remaining space is wasted.
How can this problem be overcome efficently
Thanx
Murali
Printable View
Hi all,
If we pass a very big string to function which is received in a string argument it gets trauncted or if we pass a string smaller than 256 bytes the remaining space is wasted.
How can this problem be overcome efficently
Thanx
Murali
declare fixed-length strings
' This statement declares a fixed length string.
Private sString as String * 5
Hi tonio,
What u said is right,but if a variable string is passed the problem exists.
is there any solution to that.
thanx for replying
regrds
Murali
what are you doing anyway?