473,738 Members | 3,636 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

ENTER KEYPRES

How can I disable a beep when I press Enter on TexBox
I'm trying this but it don't work:

I do it in KeyDown event

If e.KeyCode = Windows.Forms.K eys.Enter Then
' Do something ...
e.Handled = True
End If

------------------------------------------------------------------
Also can anyone tell me a good idea about this:
I want to do that when I press Enter on TextBox the focus must get second
TextBox and so on...
Nov 16 '05 #1
4 5134
Wont answer your post if you x-post to this many newsgroups.
A fair few people actually block posts that are x-posted to too many
newsgroups as this is sometimes a tactic that spammers use.
Your first question is easy in vb6 but I would have to see if the same works
in .NET.
As for your second question I can tell you exactly how to do that if you
care to not x-post.
Cheers
Newsgroup Nazi

"msnews.microso ft.com" <da*********@ho tmail.com> wrote in message
news:uX******** *****@TK2MSFTNG P11.phx.gbl...
How can I disable a beep when I press Enter on TexBox
I'm trying this but it don't work:

I do it in KeyDown event

If e.KeyCode = Windows.Forms.K eys.Enter Then
' Do something ...
e.Handled = True
End If

------------------------------------------------------------------
Also can anyone tell me a good idea about this:
I want to do that when I press Enter on TextBox the focus must get second
TextBox and so on...

Nov 16 '05 #2
"msnews.microso ft.com" <da*********@ho tmail.com> schrieb

Please post to the appropriate groups only!!
How can I disable a beep when I press Enter on TexBox
I'm trying this but it don't work:

I do it in KeyDown event

If e.KeyCode = Windows.Forms.K eys.Enter Then
' Do something ...
e.Handled = True
End If
The beep isn't created because you hold down the Enter key but because
chr(13) is received and is "of no use" for the textbox. Ctr+M also creates
chr(13) but is not the enter key. Handle the KeyPress event instead:

If e.KeyChar = Chr(13) Then
e.Handled = True
End If
------------------------------------------------------------------
Also can anyone tell me a good idea about this:
I want to do that when I press Enter on TextBox the focus must get
second TextBox and so on...


That's not standard behavior, but if you need it, call the SelectNextContr ol
of the control. In *keydown*:

If e.KeyCode = Windows.Forms.K eys.Enter Then
e.Handled = True
directcast(send er, control).select nextcontrol(... )
End If

--
Armin

How to quote and why:
http://www.plig.net/nnq/nquote.html
http://www.netmeister.org/news/learn2quote.html

Nov 16 '05 #3
Hi,

Despite the other message, please keep crossposting and go not to
multiposting.
However it is a little bit to much to send a message to a C# group for
VB.net code.

You can try this, normaly Armin puts this code in this newsgroup, however
when he sees a message with so many C# he maybe will not answer, he is very
strict in that.

I hope this helps?

Cor

\\\
Private Sub TextBox1_KeyPre ss( _
ByVal sender As Object, _
ByVal e As System.Windows. Forms.KeyPressE ventArgs) _
Handles TextBox1.KeyPre ss
If e.KeyChar = vbCr Then
e.Handled = True
End If
End Sub
///
Nov 16 '05 #4
msnews.microsof t.com wrote:
How can I disable a beep when I press Enter on TexBox
I'm trying this but it don't work:

I do it in KeyDown event

If e.KeyCode = Windows.Forms.K eys.Enter Then
' Do something ...
e.Handled = True
End If
don't know this one, probably error related.
Also can anyone tell me a good idea about this:
I want to do that when I press Enter on TextBox the focus must get second
TextBox and so on...


You can do this:

private void MyTextBox_KeyDo wn(object sender,
System.Windows. Forms.KeyEventA rgs e)
{
if (e.KeyCode == Keys.Enter)
{
SendKeys.Send(" {TAB}");
}
}

FB
--
Get LLBLGen Pro, the new O/R mapper for .NET: http://www.llblgen.com
My .NET Blog: http://weblogs.asp.net/fbouma
Microsoft C# MVP
Nov 16 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
2106
by: Alan Zhong | last post by:
i am trying to similate an "ENTER" as a key to switch focus in a sequence of text inputs. i don't want to use "event.keyCode" since i want to do additional testing before i decide which text input i want to focus next. the following are the test code i have, whenever i hit "enter", it will act clicking the submit button. what can i do to avoid this problem? <!-- ############# code begins here ############ --> <html> <head>
10
1280
by: msnews.microsoft.com | last post by:
How can I disable a beep when I press Enter on TexBox I'm trying this but it don't work: I do it in KeyDown event If e.KeyCode = Windows.Forms.Keys.Enter Then ' Do something ... e.Handled = True End If
15
4050
by: Adam J. Schaff | last post by:
I have noticed that if a user closes a form via pressing return (either while the OK button has focus or if AcceptButton is set to OK for the form) then the "ENTER" keypress event fires ON THE CALLING FORM! This is very bad for me, because in my application, Form1 responds to an ENTER keypress by calling Form2. If the user closes Form2 via an ENTER, then Form1 just reopens it again, kind of trapping the user in Form2 (they can still close...
6
2145
by: Clark Sann | last post by:
Can someone help me understand what object should be used as the lock object? I've seen some programs that use Monitor.Enter(Me). Then, in those same programs, they sometimes use another object. Why? I would appreciate it if someone could help me understand the ramifications of picking an object in this command. Thank you so much for your help. Clark
7
3169
by: Marc | last post by:
Hi, I want my user to be able to rename a button control by selcting rename from a menu. This then opens a text box in which to enter the new name in. I want the button control to inherit the name when the enter key is
18
4607
by: Zytan | last post by:
I want the same function to be run whether you press Enter or double click the listbox. It seems really verbose to write both handlers to both events everytime, even if they both call the same function, or one calls the other. Isn't there an event for 'ListBox selection selected' that is automatically called by ALL the standard GUI ways of doing it? C'mon, this is C#, we aren't supposed to be programming the GUI. There has to be such...
2
1685
by: JWest46088 | last post by:
I want the user to enter information, such as names, and then I want to ask them after they entered the first name if they want to enter another name. How would I do that? This is what I have so far: cout << "Would you like to enter an artist's information? "; cin >> answer; if(answer = 'Y' || 'y') { cout << "Enter artist: ";
24
8437
by: MichaelK | last post by:
Who knows how to prevent submitting a form on the press Enter button before all fields on the form are filled up. People just enter the first field hit Enter and it submits the form and doing validation, of course flushing with the bunch of messages because rest of the fields are empty. I remember I had some pages where wrote the code to go on the next field when pressed the Enter button (Tab like), because it didn't go anywhere at all....
0
8969
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8788
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9476
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9208
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8210
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6053
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4570
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4825
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2193
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.