Barcodes PageUp and PageDown Keys - c#

In my application I use Page Up and Page Down as navigation keys. Works with powerpoint presentation pointers.
My software also uses barcodes, with a barcode scanner working as an enumerated keyboard. What I am trying to do, is trying to create a barcode, that can be scanned and trigger the same key press as the PageUp and PageDown keys.

As suggested by Shane, I have solved my problem by introducing a character sequence in my software.
%[CMD_PageUp], %[CMD_PageDown] etc.
I capture the key press event for when these have been entered to then process the same function that pressing PageUp or PageDown would.

Related

Change keyboard "Enter" key text in Windows store apps

I have a question about renaming soft keyboard keys in Windows Store Apps (C#).
Is it possible to rename soft keyboard key?
For example, I need to rename key "Enter" to "Send". Is it possible?
It is not possible to rename a soft keyboard key. Here is further information on the touch keyboard, which details how it is a system component (so changing it from an app isn't possible).

Windows Forms: simulate holding key down on keyboard

During my search, I've seen many different versions of this question, yet somehow none of the solutions provided solved my problem.
It's really quite simple, I just want to simulate holding down a key on the keyboard through code. I want to try and make a character in a game walk forward constantly, so I just need to make a program that simulates holding down the 'W' key. I've seen a lot of people were using Windows Forms for this, I don't know if it actually is the right application but if it works I'm happy.
Just very quickly sending the key doesn't work, so simply calling SendKeys.Send('W') every 30ms does not make my character move in-game. So, what can I do to simulate holding down a key on the keyboard?
Here you go, a .Net library can simulate key press
https://inputsimulator.codeplex.com/
Edit
To get the key works, the external program must in active window, and your program need to run in background.
Windows Forms provides the SendKeys method which can simulate text
entry, but not actual key strokes. Windows Input Simulator can be used
in WPF, Windows Forms and Console Applications to synthesize or
simulate any Keyboard input including Control, Alt, Shift, Tab, Enter,
Space, Backspace, the Windows Key, Caps Lock, Num Lock, Scroll Lock,
Volume Up/Down and Mute, Web, Mail, Search, Favorites, Function Keys,
Back and Forward navigation keys, Programmable keys and any other key
defined in the Virtual Key table.
It provides a simple API to simulate
text entry, key down, key up, key press and complex modified key
strokes and chords.

SendKeys alternatives?

I created a keypad app that stays on top, but does not take the focus so that on a touch screen it will forward whatever keys you press to the active application via SendKeys.
It works perfectly with every application I have tried it with... except, of course, for the one I actually need it to work with which is a Point Of Sale application. The POS application lets the user type in item codes on the keyboard but it doesn't have a good keypad for touchscreens so that's why I'm trying to create an external one for it (since I don't have access to the POS application code).
It actually does work when you first try it, but then it's pretty sporadic. Using the keyboard directly always works, so I'm not sure why SendKeys only works sometimes with this application. I've tried implementing it several ways... sending the keys as they are pressed, sending them altogether when the user presses the enter button on the keypad, copying the keys to the clipboard and then using send keys to do a Ctl-V and then Enter.
What other options do I have to simulate a key press to another application? SendKeys doesn't seem to perfectly simulate key presses, so is there a lower level mechanism I can tap into?
I should mention that when it doesn't work, what happens is that I get a beep from the POS application as though I'd pressed an invalid key. So it's not that it isn't getting some kind of input but clearly it isn't getting the key I'm sending it the same way it would from an actual keyboard.
I found this Windows Input Simulator: https://inputsimulator.codeplex.com/
Super easy to use and way, way, way better than SendKeys. And as a bonus, in addition to letting you simulate input, it also lets you set low level keyboard/mouse hooks.

Emulate Fn key press using keybd_event API or sendkeys class

I have a Fn key on my USB keyboard which allows me to enable certain features on my keyboard. So, if I press Fn + F10, the keyboard will switch to a different mode.
I have a feeling it's possible that Windows has no access to the Fn on my keyboard. However, I thought maybe there may be some undocumented way of triggering this key for keyboard that have a Fn key (like laptops, etc).
Basically, no you can't emulate it.
Keyboards work by sending standard scan codes to the PC. On a regular keyboard each key is mapped to a scan code. There is no scan code for the fn button, instead it tells the keyboard to change the scan code it sends in response to a given key press. E.g. on my laptop the home button normally sends the scan code for home, but if I press the Fn key as well it sends the scan code for print screen. It is deliberately transparent to the operating system.

How can I simulate function key combinations using C#?

I was hoping someone could help me with simulating a function key combination in C#, in this case FN + F4.
Here's what I'm trying to do... I have an older touchscreen netbook that I recently installed Windows 8 on. It has a swivel screen so you can fold it down and use it like a tablet. Windows 8 runs surprisingly well on it. I had a few minor issues, most of which I was able to work out, but one remains.
When you first power up the netbook or wake it from sleep, the screen is at 30% brightness, and Windows thinks that this is the max setting, so increasing the screen brightness through the normal methods does not work. On my netbook, pressing FN + F4, restores the screen to full brightness. This is a minor annoyance though, because I have to swivel the screen back and forth to fix the brightness using the physical keyboard, when I'd like to just leave it in the tablet position and minimize wear and tear.
What I'd like to do is write a little application that runs on start up, and simulates the function key combination, so the brightness is restored automatically. Any suggestions would be greatly appreciated. Thanks.
The Fn key is not a key that is sent from the keyboard to the computer. It is actually used to change the meaning of keys on the keyboard (such that the keyboard sends different scancodes when the key is pressed with Fn held down).
You should be able to easily write a simple Windows Forms program that listens to key presses and shows you what has been received. Register for the KeyDown event. The KeyEventArgs your handler receives has various properties that you can inspect to see what is being received.
The FN key isn't a real keyboard key like the other modifiers (shift, alt, ctrl) nor is it a function key like the F1 - F12. The FN key is a hardware only key that simply tells the hardware to send a different keystroke while the FN key is being pressed.
So, you are going to have to adjust the brightness manually like "m-y" stated in the comments or through some other mechanism.
Reference Link.

Categories