Home » questions » Visual Basic Code Help?

Visual Basic Code Help?

2006-08-18 21:47:51, Category: Programming & Design
What is the code so that i can click a command button and it could display a symbol (i want to make a keyboard layout like On Screen Keyboard in XP, but my own.) Basically i want to have letters of other languages show up i want the data to be entered in any area when the curser is, just like on screen keyboard

Answers

  1. contraversialmatt

    On 2006-08-18 21:57:25


    Fairly easy. Use the character-map to find the letters/symbols you want, then copy them into the Command button's title (or it might be label for command buttons) then simply use the On_Click event to make it appear in the title-box or whatever you are using. Ex. (ignore syntax, been a while since i used VB) Button1.OnClick ( Text1.text = Button1.label } Or something like that.