473,797 Members | 3,096 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Keypress

I am trying to detect the up and down keys on a key press function, but they
do not seem to generate a keypress call. Is there another event generated
when these keys are pressed

Thanks.

PS Apologies if this appears as a double post, but the news server I used
originally does not seem to propagate most other news servers.
Jul 23 '05 #1
3 9124
"Hamish" <No****@gmail.c om> wrote in message
news:cm******** **@titan.btinte rnet.com...
I am trying to detect the up and down keys on a key press function, but they do not seem to generate a keypress call. Is there another event generated
when these keys are pressed

Thanks.

PS Apologies if this appears as a double post, but the news server I used
originally does not seem to propagate most other news servers.

Will this help?

http://cita.rehab.uiuc.edu/courses/2...1/slide14.html

<html>
<head>
<title>onkeys.h tm</title>
<script type="text/javascript">
function onkey(what) {
if (what == "") {
window.status = "";
document.forms[0].txt.focus();
} else {
window.status += what + " ";
}
}
</script>
</head>
<body onload="onkey(' ')">
<form>
<input type="text" name="txt"
size="1" maxlength="1"
onkeypress="onk ey('onkeypress' )"
onkeydown="onke y('onkeydown')"
onkeyup="onkey( 'onkeyup')">
<input type="button" name="but"
value="Clear" onclick="onkey( '')">
</form>
</body>
</html>
Jul 23 '05 #2

"Hamish" <No****@gmail.c om> wrote in message
news:cm******** **@titan.btinte rnet.com...
I am trying to detect the up and down keys on a key press function, but they do not seem to generate a keypress call. Is there another event generated
when these keys are pressed


document.onkeyp ress will return your basic functional text keyboard. When
you press an alphanumeric key you will get it's lower case value. When you
press shift and an alphanumeric key you get the upper case value or in the
case of numbers the corresponding shifted characters. If you need to trap
other key events like the up/down arrows or the backspace etc you need
onmousedown or onmouseup and the correct browser feature detection since
there is no standard for DOM Level 2 AIUII. Hope this link helps.
<http://www.javascriptk it.com/dhtmltutors/domeventp2-2.shtml>

Jimbo
Jul 23 '05 #3

"J. J. Cale" <ph****@netvisi on.net.il> wrote in message
news:41******@n ews.012.net.il. ..

"Hamish" <No****@gmail.c om> wrote in message
news:cm******** **@titan.btinte rnet.com...
I am trying to detect the up and down keys on a key press function, but

they
do not seem to generate a keypress call. Is there another event generated when these keys are pressed


document.onkeyp ress will return your basic functional text keyboard. When
you press an alphanumeric key you will get it's lower case value. When you
press shift and an alphanumeric key you get the upper case value or in the
case of numbers the corresponding shifted characters. If you need to trap
other key events like the up/down arrows or the backspace etc you need
onmousedown or onmouseup and the correct browser feature detection since
there is no standard for DOM Level 2 AIUII. Hope this link helps.
<http://www.javascriptk it.com/dhtmltutors/domeventp2-2.shtml>

Jimbo


Sorry I meant onkeydown and onkeyup of course :>)
Jul 23 '05 #4

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

Similar topics

7
14866
by: Alex007 | last post by:
Hi, I've been working on this C assignement for a CS course.... the assignement is going pretty well and all my code works well on both Windows and Linux. The only thing that doesn't work is a stupid function that only has to wait for a keypress from the user (it's a CLI program). Here's what I have :
3
7380
by: Darryn Ross | last post by:
Hi, I am trying to catch the KeyPress event on my datagrid but it isn't working... i have also tried registering the handler with the event like this... dgGLBatch.KeyPress += new KeyPressEventHandler(dgGLBatch_KeyPress); but nothing changed. I was wondering wether a custom table and column style might have an effect on how this works???
2
5403
by: rege | last post by:
Hi, I have two applications developed in C# say A and B. When user presses key "L" with applicaition A active , it causes a keypress event which causes application B to run. Application A then waits for application B to exit. On exit from Application B the focus shifts back to application A. The problem is if user presses L more than once, say thrice, then three keypress events are generated. Therefore application A starts
1
6181
by: Rene | last post by:
Hi, I am running is some problems with the KeyPreview and KeyPress events. The KeyPress event is only triggered when there this an focusable control on the form. When all controls are disabled the Form.KeyPress event does not trigger anymore. A way to 'solve' this is to set the focus to the form, but during testing it happens ofter the keypress event is not getting triggered on keys like
4
4533
by: Tom | last post by:
I have a VB.NET user control that I wrote - this control has three or four other controls on it (textbox, combobox, datetime picker, etc). Now, whenever the control is on a form and the user enters anything into the textbox (for instance) I trap the keypress event to handle some stuff (i.e. if it is an enter key, etc). Now, once I am done with handling the keypress event for the textbox, I then need to pass that keypress event BACK to the...
15
4058
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...
3
6864
by: Fia | last post by:
Hi In Visual Basic 6 I could call keypress with an integer of a choosen key. For example I could call a textbox's keypress with the number 13 (for the enter key). But now in Visual Basic .Net I don't know how I shall do to do the same thing. I have tried to send Keys.Numpad8, but then it complains about it cannot convert from Keys to keyEventArgs I have also tried to send the number 8, but then it complains it cannot convert from Integer...
5
3084
by: Henry Jones | last post by:
I am new to C# and wanted to capture the KeyPress for a textbox. I created some code as follows: private void textBox3_KeyPress(object sender, System.EventArgs e) { this.textBox2.Text = sender.ToString();
2
19299
by: Tony Johansson | last post by:
Hello! I have created a Control that consist of a label and a textbox.I have called this class ctlLabelTextbox. public partial class ctlLabelTextbox : UserControl { .... } The class that I have created for this purpose is derived from class UserControl.
0
9685
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
10470
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...
1
10214
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
7561
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6803
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
5459
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
5583
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4135
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2935
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.