|
-
Sep 16th, 2009, 05:09 PM
#1
Thread Starter
Fanatic Member
-
Sep 16th, 2009, 05:17 PM
#2
Addicted Member
Re: Put ip address into textboxes
Do you have the IP-adress declared in a string? If so, you could use the string.spilt-function and store the output in to an array. Then you could populate the textboxes from the array.
If you don't get it, feel free to ask more
-
Sep 16th, 2009, 05:29 PM
#3
Thread Starter
Fanatic Member
Re: Put ip address into textboxes
Thank you very much Erik 
The Split function was just what I needed
Code:
Dim IP As String = Me.lblFindIPaddress_result.Text
Dim a As Array = IP.Split(".")
Me.txtQuick_address_1.Text = a(0)
Me.txtQuick_address_2.Text = a(1)
Me.txtQuick_address_3.Text = a(2)
Me.txtQuick_address_4.Text = a(3)
_powerade_
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
|