0
votes
2answers
63 views
Javascript problem with location.href.
Hello!
I have a textbox and whenever the user presses a key it's checked to see if the user pressed enter. If the enter key is pressed, i want to add all the info in the textbox a …
0
votes
1answer
24 views
WinForms, Handling all keys = OnKeyPress + OnKeyDown, but how?
I've got one Form, custom drawing, no controls.
When I need to get the input from the user I go to OnKeyDown event and then map event's KeyData to a string** - so that I can reco …
0
votes
1answer
28 views
Excluding form fields from keypress handler assigned to body
I have a keypress handler on a web page assigned to the body element. I really do want it to be active anywhere in the web page. Or so I thought. The keypress events in textual …
1
vote
9answers
1k views
Avoid Beep sound when enter keypress in a textbox
Hi,
When you create an aspx page as this one:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-/ …
0
votes
1answer
86 views
Format time using onKeyUp and onBlur
How would you write a filter (without a third-party library) for an input field that:
Restricts the data entry to numbers and a single colon
Prevents more than 5 characters from …
2
votes
2answers
251 views
How to avoid the ding sound when Escape is pressed while a TEdit is focused?
In code I have developed some years ago I have been using this a lot to close the current form on pressing the Escape key at any moment:
procedure TSomeForm.FormKeyPress(Sender: T …
0
votes
1answer
237 views
ComponentArt Grid OnKeyPress Reset
Is there a way to reset the on key press search value and state through code (C#)?
The ComponentArt (CA) grid is being used to select a record from the database to update. I need …
1
vote
1answer
281 views
Readonly Input field will not fire OnKeyPress in IE6
I am implementing a special behaviour for the Enter key. The problem is my ASP.net library generates a readonly field; and when users tab into this field (tabbing into it is meanin …
1
vote
3answers
296 views
Key down event affected by buttons
Hi everybody, I'm new around here and i have a little problems with a C# application.
I want to capture the key down event. This wasn't a problem at first but after i added some b …
3
votes
2answers
742 views
[Delphi] Changing the default modal result of a form.showModal
In my Delphi application I have a custom Yes, No, Cancel dialogue, which will be called from the main form to confirm saving the changes made to the current file edited. This would …
0
votes
3answers
557 views
.NET Submit Fires Before Javascript onKeypress
Hello, I am trying to use onkeypress on an input type="text" control to fire off some javascript if the enter button is pressed. It works on most pages, but I also have some pages …
1
vote
2answers
826 views
Javascript onkeypress delete or dot
Is there any way to find out if the user pressed the delete key or dot? It has the same keycode in FireFox.
