Wrox Programmer Forums
Go Back   Wrox Programmer Forums > Visual Basic > VB 2005 > Visual Basic 2005 Basics
|
Visual Basic 2005 Basics If you are new to Visual Basic programming with version 2005, this is the place to start your questions. For questions about the book: Beginning Visual Basic 2005 by Thearon Willis and Bryan Newsome, ISBN: 0-7645-7401-9 please, use this forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Visual Basic 2005 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old April 12th, 2006, 04:14 PM
Registered User
 
Join Date: Nov 2005
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
Default Using Enter to jump to the next text field

I want to use Enter button on the keyboard to jump to the next text box in my form insted of using Tab button during execution the program. Can anyone help me about that?

 
Old March 29th, 2007, 02:34 AM
Registered User
 
Join Date: Mar 2007
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to Manthan_Mehta60
Default

hi

 For Your Problem You Can use This code

Private Sub txtamount_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles txtamount.KeyDown

        If e.KeyCode = Keys.Enter Then cmd_Save.Select()

    End Sub

 
Old April 29th, 2007, 01:25 AM
Registered User
 
Join Date: Apr 2007
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Hi,
On a number of controls the property "Enter Moves to Next field" can be set to True. This comes in defaulted to false.





Similar Threads
Thread Thread Starter Forum Replies Last Post
on keypress (enter) jump to button RoniR ASP.NET 1.0 and 1.1 Basics 1 January 8th, 2007 09:37 AM
enter text in dropdownlist Anjali General .NET 2 September 30th, 2004 01:40 AM
enter key within text area shs BOOK: Beginning ASP.NET 1.0 0 April 12th, 2004 11:08 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.