Hi,
I think that somehow, explicitly or implicitly, you are executing 
toString() on the Vector (or is it a CSpVector), which converts the 
multi-value vector into a single string (or is it a CSpString).

You should loop through the vector and pull out its values, e.g.

//v is a Vector or CSpVector
for (Enumeration e = v.elements(); e.hasMoreElements();)
{
String nextstring = e.nextElement().toString();
}//for...

-- Curt Springer, Team NetDynamics

At 06:21 AM 9/23/99 -0700, Nicolas wrote:

>Hi,
>
>I have a repeated with some textboxes. The user may enter
>data that contains a comma. When I get the vector containing
>this data, I'm not able to differentiate the values anymore
>(the vector is comma separated too).
>
>Does anyone know how to change the default separator of a
>vector ?
>
>Thanks
>
>_________________________________________________________________________
>
>For help in using, subscribing, and unsubscribing to the discussion
>forums, please go to: http://www.netdynamics.com/support/visitdevfor.html
>
>For dire need help, email: [EMAIL PROTECTED]

_________________________________________________________________________

For help in using, subscribing, and unsubscribing to the discussion
forums, please go to: http://www.netdynamics.com/support/visitdevfor.html

For dire need help, email: [EMAIL PROTECTED]

Reply via email to