|
-
Nov 28th, 2009, 02:06 PM
#1
Thread Starter
Addicted Member
I need some simple code for VB
I need code for VB 6.0
I have variable c = 8:45
And I need code which will print 8 in one textbox and 45 in another textbox.
I hope you will write code and post it on forum instead of me.
-
Nov 28th, 2009, 02:22 PM
#2
Re: I need some simple code for VB
Dim strParts() As String
strParts = Split(c, ":")
Text1.Text = strParts(0)
Text2.Text = strParts(1)
-
Nov 29th, 2009, 07:15 AM
#3
Thread Starter
Addicted Member
Re: I need some simple code for VB
It works. Thanks!
-
Nov 29th, 2009, 12:39 PM
#4
Re: I need some simple code for VB
You're welcome, now please help us by marking the thread as resolved. If you have JavaScript enabled you can do that by selecting the Mark Thread Resolved item from the Thread Tools menu. Otherwise please insert "[Resolved]" at the start of the Subject and select the green checkmark from the Post Icons.
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
|