11-13-2013 09:02 AM
I have a parameter in the "properties". This parameter has some input parameters (8 pcs) that is comma delimited. Where I want to read out an integer value from.
How do ?
Can I use "InsStr ?
11-14-2013 08:13 AM
Hi LVdummies,
I prefer to use Split() for tokenizing, like this:
PropValStr = Channel.Properties("PropName").Value PropValues = Split("," & PropValStr, ",") jMax = UBound(PropValues) FOR j = 1 TO jMax Msg = Msg & PropValues(j) & vbCRLF NEXT ' j MsgBox Msg
Brad Turpin
DIAdem Product Support Engineer
National Instruments