Hi Folks,

I have a textbox, and this has a lot of records in it. I also have a combobox, which is for the line of the records. How do I code my VB such that when user selects the nth line, my textbox will be able to display the nth line as the first line?

For example, the contents of my textbox is as follows:

"a", "for", "apple"
"b", "for", "boy"
"c", "for", "cat"
"d", "for", "dog"
"e", "for", "egg"
"f", "for", "flower"
"g", "for", "gun"

If user selects 5 on my combobox, the textbox will automatically display this:

"e", "for", "egg"
"f", "for", "flower"
"g", "for", "gun"

but they would still be able to scroll up and down if they want.

Thanks!