|
-
Dec 11th, 2003, 04:34 PM
#1
Thread Starter
Fanatic Member
old string() function in vb6[RESOLVED]
Code:
lblSeparator = String(15, "*")
what is the equivalent in NET -
how can i use this?
Thanks, pirate...
Last edited by ZeBula8; Dec 11th, 2003 at 06:03 PM.
-
Dec 11th, 2003, 05:50 PM
#2
Sleep mode
VB Code:
Dim sp As New String("*", 15)
-
Dec 11th, 2003, 06:04 PM
#3
Frenzied Member
I've seen it before, but never had to use it. What exactly does that do? any documentation for it and its uses?
Being educated does not make you intelligent.
Need a weekend getaway??? Come Visit
-
Dec 12th, 2003, 12:13 PM
#4
Thread Starter
Fanatic Member
Code:
lblString = String(15,"*")
puts this in the lblString
***************
has 'some' uses...
-
Dec 12th, 2003, 12:21 PM
#5
Sleep mode
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?
It seems to replace current string with the provided char for length of integer .
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|