|
-
Sep 21st, 2007, 05:29 PM
#1
Thread Starter
Hyperactive Member
[RESOLVED] Need help to split text!
For example I have a text like this:
Text1.Text = "Visual.Basic"
How can I split this text to two TextBox'es like this:
Text2.Text = "Visual"
Text3.Text = "Basic"
As you can see I want use "." like spliter mark.
Last edited by Lauriux1; Sep 21st, 2007 at 05:46 PM.
-
Sep 21st, 2007, 05:32 PM
#2
Re: Need help to split text!
Here
Code:
dim lines() as string
lines=split("Visual.Basic",".")
text2=lines(0)
text2=lines(1)
If a post has been helpful please rate it. 
If your question has been answered, pull down the tread tools and mark it as resolved.
-
Sep 21st, 2007, 05:51 PM
#3
Thread Starter
Hyperactive Member
Re: [RESOLVED] Need help to split text!
Thanks! You are very helpful but then I try Rate your post I'm geting this "You must spread some Reputation around before giving it to Mxjerrett again." So sorry!
RESOLVED!
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
|