--- In [EMAIL PROTECTED], "tomnew2003" <[EMAIL PROTECTED]> wrote: > > Edgard, > > In reviewing your problem again I noticed that you are using the > SPLIT command in your sample function to parse the WinSock data. > That implies you are dealing with a string and not bytes, integers, > longs, etc. > Your line, > ArrayA = SPLIT(dataFromWinsock,'|') > makes ArrayA a string variable and not an array (but you could > create an array of strings).
I have to say that you lost me at this point. dataFromWinsock is a string variable, but ArrayA is indeed an array. That's clearly stated in the Split function documentation. Now, you could save a copy of dataFromWinsock and split it into another array, instead of saving a copy of ArrayA, but that's not what you were saying. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "nsb-ce" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/nsb-ce?hl=en -~----------~----~----~----~------~----~------~--~---
