Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Listview Scroll event. 1

Status
Not open for further replies.

BiggerBrother

Technical User
Sep 9, 2003
702
GB
Is there anyway to capture this event? I have a textbox overlaid onto the listview, and when the user scrolls the listview, I want to be able to hide or move the textbox.

Many thanks

BB
 
Try:
Private Sub List1_Scroll()
Text1.Visible = False
End Sub
 
I'm using a listview, rather than a listbox.

There is no standard scroll event for this control. Many thanks

BB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top