How would i count the characters in a label's caption? is it possible to have the number set as an integer?
Printable View
How would i count the characters in a label's caption? is it possible to have the number set as an integer?
??? You want the length of the caption.
Dim intCount As Integer
intCount = Len(Label1.Caption)
Dim intCount As Integer
intCount = Len(Label1.Caption)
Wow Bruce that's quite a coincidence.
Thanks guys.