Get length of characters

Hi All,

I am reading a cell - assigning to a variable - converting that to a string and trying to get the length of that variable. I get a error which says -
option strict on disallows implicit conversions from integer to string

check.Length returns integer value but message box activity accepts string value. If you want to display it you have to convert it to string. You can use check.Length.ToString

1 Like