Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
How do you get information from three different text boxes into a table in vb2008 express?
I need to be able to put in information in to separate text boxes and have them put into cells in a table on visual basic 2008 express addition
I also need to know how to make a chart i haven't worked with this program in a while
2 Answers
- 1 decade agoFavorite Answer
whenever you want to put the data in use this:
Dim string1 as string=TheFirstTextBox.text
Dim string2 as string=TheSecondTextBox.text
Dim string3 as string=TheThirdTextBox.text
then use the string1,2,and 3 as teh values to put in the cell
- 1 decade ago
To do that you can type:
Dim string1 as string=yourFirstTextBox.text
Dim string2 as string=yourSecondTextBox.text
Dim string3 as string=yourThirdTextBox.text
then use the string1,2,and 3 as teh values to put in the cel