locked
how to make a screen keyboard? RRS feed

  • Question

  • I want to make a screen keyboard that can write in my Web Browser immediately (without copy then past)
    Friday, January 20, 2012 9:49 PM

Answers

  • Hello AISayed Web 2,

    I want to make a screen keyboard that can write in my Web Browser immediately (without copy then past)


    and available in an executable operating system, the calls with command osk.exe, you will see the on-screen keyboards and you can type characters and display them on the web browser.

    Example with Static Class Process

    Process.Start ("osk.exe")

    It may depend on whether or not you want to create a custom.

     

    Regards.


    Friday, January 20, 2012 9:58 PM
  • I want to make a screen keyboard that can write in my Web Browser immediately (without copy then past)

    Hi Alsayed,

    Please take a look at this sample:

    http://code.msdn.microsoft.com/VBSoftKeyboard-161d92d7

    The sample demonstrates how to create a soft keyboard. It has the following 
    features

    1. It will not get focus when a key button clicked.

    2. If the user presses the left mouse button within its nonclient area(such as the
      title bar), it will be activated. When the left mouse button is released, it will
      activate the previous foreground Window.

    3 When user clicks a charactor on it, like "A" or "1", it will send the key to 
     the active application.

    4 It supports special keys, like "WinKey" "Delete".

    5 It supports the combination of keys, like "Ctrl+C".

    NOTE: Ctrl+Alt+Del is not supported as it will cause security issue.

    Best regards,


    Mike Feng
    MSDN Community Support | Feedback to us
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.
    Thursday, January 26, 2012 3:29 PM
    Moderator

All replies

  • Hello AISayed Web 2,

    I want to make a screen keyboard that can write in my Web Browser immediately (without copy then past)


    and available in an executable operating system, the calls with command osk.exe, you will see the on-screen keyboards and you can type characters and display them on the web browser.

    Example with Static Class Process

    Process.Start ("osk.exe")

    It may depend on whether or not you want to create a custom.

     

    Regards.


    Friday, January 20, 2012 9:58 PM
  • I want to make a screen keyboard that can write in my Web Browser immediately (without copy then past)

    Hi Alsayed,

    Please take a look at this sample:

    http://code.msdn.microsoft.com/VBSoftKeyboard-161d92d7

    The sample demonstrates how to create a soft keyboard. It has the following 
    features

    1. It will not get focus when a key button clicked.

    2. If the user presses the left mouse button within its nonclient area(such as the
      title bar), it will be activated. When the left mouse button is released, it will
      activate the previous foreground Window.

    3 When user clicks a charactor on it, like "A" or "1", it will send the key to 
     the active application.

    4 It supports special keys, like "WinKey" "Delete".

    5 It supports the combination of keys, like "Ctrl+C".

    NOTE: Ctrl+Alt+Del is not supported as it will cause security issue.

    Best regards,


    Mike Feng
    MSDN Community Support | Feedback to us
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.
    Thursday, January 26, 2012 3:29 PM
    Moderator