strAthleteToken = strRecord.Split((","))
the statement above gives an Error message
-Option Strict On disallows implicit conversions from 'String' to 'Char'. (BC30512) .....
can someone help mi correct this
.....
strAthlete and strRecord were declares as Strings.......

.....thanks

The error message says it all, the argument has to be character:

strAthleteToken = strRecord.Split(CChar(","))

and the strAthleteToken must be a string array, not a string.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.