| View previous topic :: View next topic |
| Author |
Message |
Orbit Advanced Cheater
Reputation: 0
Joined: 09 Dec 2007 Posts: 74
|
Posted: Wed Jul 09, 2008 7:44 pm Post subject: VB2008- How to arrange data |
|
|
I wanted to ask how can i arrange a data for eg i am able to get all data from the webpage and it comes out like this in a textbox
| Code: | | cost,fees,price,5,4,4.9 |
but i want to arrange them like this
cost=5
fees=4
price=4.9
Is that possible
Hope you understand my question
|
|
| Back to top |
|
 |
samuri25404 Grandmaster Cheater
Reputation: 7
Joined: 04 May 2007 Posts: 955 Location: Why do you care?
|
Posted: Wed Jul 09, 2008 8:06 pm Post subject: |
|
|
What language?
_________________
|
|
| Back to top |
|
 |
Orbit Advanced Cheater
Reputation: 0
Joined: 09 Dec 2007 Posts: 74
|
Posted: Wed Jul 09, 2008 8:17 pm Post subject: |
|
|
| vb2008
|
|
| Back to top |
|
 |
samuri25404 Grandmaster Cheater
Reputation: 7
Joined: 04 May 2007 Posts: 955 Location: Why do you care?
|
Posted: Wed Jul 09, 2008 9:31 pm Post subject: |
|
|
Try something like
| Code: |
TextBox1.Text = "cost = " & cost.ToString() & "\r\nfees = " & fees.ToString() & "\r\nprice = " & price.ToString()
|
_________________
|
|
| Back to top |
|
 |
Orbit Advanced Cheater
Reputation: 0
Joined: 09 Dec 2007 Posts: 74
|
Posted: Thu Jul 10, 2008 6:48 am Post subject: |
|
|
| didnt work:(
|
|
| Back to top |
|
 |
Anymonous Newbie cheater
Reputation: 0
Joined: 18 Jul 2007 Posts: 13
|
Posted: Wed Jan 28, 2009 5:43 am Post subject: |
|
|
| samuri25404 wrote: | Try something like
| Code: |
TextBox1.Text = "cost = " & cost.ToString() & "\r\nfees = " & fees.ToString() & "\r\nprice = " & price.ToString()
|
|
\r\ Doesn't make a white line O.o?
Try replacing \r\ with & vbCrLf &
|
|
| Back to top |
|
 |
NINTENDO Grandmaster Cheater Supreme
Reputation: 0
Joined: 02 Nov 2007 Posts: 1371
|
|
| Back to top |
|
 |
|