Questions tagged as 'teclado'

2
answers

How to create a shortcut inside a page?

To add a new item to my database there is the Add button, however I would like to add a shortcut to it that performs the same function as the button. For example, when E is clicked on any question in the OS, it goes into edit mode. In my...
asked by 22.01.2017 / 15:34
2
answers

How to replace a keyboard with a UIPickerView?

I have a program, which a section of the form, in this case a UITextField , which needs to be filled. But instead of a keyboard popup, I need to get a UIPickView , which already has the options for the padding. Then when the user...
asked by 22.09.2014 / 16:31
1
answer

What is the best way to capture keyboard shortcuts?

I currently use the keypress approach to catch the Alt pressed and the key that the user wants, but using alt Pressed may cause compatibility issues in some browsers. For example, by opening the search window: $(document).on('keypress...
asked by 14.12.2015 / 19:15
1
answer

Error, Loop when pressing ENTER with e.KeyCode

I'm trying this code: private void txtEmgSearch_KeyUp(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Enter) { this.btnEmgSearch.PerformClick(); } } The command itself works normally, bu...
asked by 23.09.2016 / 22:06
2
answers

Simulate typing the keyboard programmatically in c

The problem: I need my C program to write like a keyboard. When I open google, for example, and click on the search field I would like it to appear several 'a'. As if the key was pressed on the keyboard. Extra context: I'm making a blueto...
asked by 27.10.2017 / 00:30
1
answer

Open mobile keyboard automatically

Currently I have the following block attached to the user action. $(".class-botao").focus() When the user interacts with the page the mobile keyboard is displayed normally. But in my application there is a method that checks if t...
asked by 13.09.2016 / 23:30
1
answer

Lock keyboard and mouse in C #, but keeping the execution of a method

I need to block the use of the keyboard and mouse in form while it will execute a certain function of the system, in which I am putting the call of the lock method in the event of Load of the form, in which it is actually blocking the key...
asked by 18.01.2016 / 22:01
3
answers

Bootstrap navbar dropdown menu focus control after the click

Situation I have a navbar on my site, and in it I have several dropdown / megamenus menus. I need when clicking this dropdown, the user has the option to "scroll" the page up and down with the arrow keys. With the mouse scroll this alrea...
asked by 08.05.2014 / 15:38
2
answers

Pressing a button on the keyboard

Hello, Within the system I am developing the user can change a registry that is in the database. I would like to know how I can do that instead of the user being able to save the changes just by clicking on the "change" button he can do this...
asked by 28.08.2017 / 22:53
3
answers

How to leave the Android virtual keyboard visible / invisible while TEdit is in focus

I use Delphi XE7 , I wanted to know how to handle this question, if I focus on TEdit , it opens the virtual keyboard of Android , I press it back it closes the keyboard and the focus remains on TEdit but when I press aga...
asked by 05.12.2016 / 12:49