i have one form, with 2 picture boxes, one Vscroll, and so many textboxes in pictureboxes..
when i m clicking the VScroll, it works...
now i want that when i press enter button in textbox the scroll should go down, as it goes on click.please help me.
Jaseem Ahmed 2 Junior Poster
Recommended Answers
Jump to PostYou need to call VScroll inside the desired event.
Jump to Postwhat is the code that you are working on.
Jump to PostIf you used the code as per your previous thread, the following should work -
Private Sub Text1_KeyDown(KeyCode As Integer, Shift As Integer) If KeyCode = 13 Then If Not VScroll1.Value = VScroll1.Min Then 'if minimum then stops pbInner.Left = -HScroll1.Value pbInner.Top = -VScroll1.Value End If End …
Jump to Postor may be you are trying to do what we do in creating a game menu, normally it will show 3 or 4 buttons when you press down then it will display the rest of the hiding button,
here you are showing 6 textboxes and you want to show remaining …
All 15 Replies
debasisdas 580 Posting Genius Featured Poster
Vineeth K 10 Posting Whiz in Training
Jaseem Ahmed 2 Junior Poster
debasisdas 580 Posting Genius Featured Poster
Vineeth K 10 Posting Whiz in Training
Jaseem Ahmed 2 Junior Poster
AndreRet 526 Senior Poster
Jaseem Ahmed 2 Junior Poster
AndreRet 526 Senior Poster
Vineeth K 10 Posting Whiz in Training
Jaseem Ahmed commented: Superb....Mind Blowing +1
Jaseem Ahmed 2 Junior Poster
Jaseem Ahmed 2 Junior Poster
Vineeth K 10 Posting Whiz in Training
Jaseem Ahmed 2 Junior Poster
Vineeth K 10 Posting Whiz in Training
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.