How do I assign an access key to a button VB.Net?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Peprahp
    New Member
    • May 2020
    • 4

    How do I assign an access key to a button VB.Net?

    I'm in visual Basic programming, I'm trying to create a simple program but I don't know how to assign access key to a button
  • SioSio
    Contributor
    • Dec 2019
    • 272

    #2
    For example, the text "End (X)" can be implemented by adding the character string "End (& X)" to the Text property of the Button control. The access key is Alt + X.
    If you don't want to use the Alt key, use the Keypress event.

    Comment

    • Peprahp
      New Member
      • May 2020
      • 4

      #3
      Thank you very much.

      Comment

      Working...