R
Ryan
Hello,
I'm passing a form a comma-delimited list of values as a
string. The string lookes like this:
"F101", "F101", "F101"
I'm using Chr(34) to put the actual quotes around the
values.
I would like to load these individual values into an
array. I've tried using the array function like this:
variant = Array(stringOfCommaDelimitedValues)
When I try to reference the variant as an array (as the
Access help file says you can) like this: variant(0) I get
all the values instead of just the first.
Does anyone have a better way of loading a comma-delimited
string into an array.
I'm passing a form a comma-delimited list of values as a
string. The string lookes like this:
"F101", "F101", "F101"
I'm using Chr(34) to put the actual quotes around the
values.
I would like to load these individual values into an
array. I've tried using the array function like this:
variant = Array(stringOfCommaDelimitedValues)
When I try to reference the variant as an array (as the
Access help file says you can) like this: variant(0) I get
all the values instead of just the first.
Does anyone have a better way of loading a comma-delimited
string into an array.