B
Brian P. Hammer
All - I am trying to name the column headers of a Component One Flex. What I
want to do is to name it much like the column names you'd find in Excel:
A,B, C.... AA, AB, AC and so on. I am trying this:
For c = 1 To flex.Cols.Count - 1
Dim hdr As String = String.Format("{0}", CChar("A"c + c - 1))
flex(0, c) = hdr
Next c
..Net does not like the + and it says Operator is not defined for types Char
and Integer. Any help would be appreciated.
Thanks,
Brian
want to do is to name it much like the column names you'd find in Excel:
A,B, C.... AA, AB, AC and so on. I am trying this:
For c = 1 To flex.Cols.Count - 1
Dim hdr As String = String.Format("{0}", CChar("A"c + c - 1))
flex(0, c) = hdr
Next c
..Net does not like the + and it says Operator is not defined for types Char
and Integer. Any help would be appreciated.
Thanks,
Brian