what is the equivalent in NET -Code:lblSeparator = String(15, "*")
how can i use this?
Thanks, pirate...
Printable View
what is the equivalent in NET -Code:lblSeparator = String(15, "*")
how can i use this?
Thanks, pirate...
VB Code:
Dim sp As New String("*", 15)
I've seen it before, but never had to use it. What exactly does that do? any documentation for it and its uses?
puts this in the lblStringCode:lblString = String(15,"*")
***************
has 'some' uses...
It seems to replace current string with the provided char for length of integer .Quote:
Originally posted by Memnoch1207
I've seen it before, but never had to use it. What exactly does that do? any documentation for it and its uses?