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
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
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.
Ex. (ignore syntax, been a while since i used VB)
Button1.OnClick (
Text1.text = Button1.label
}
Or something like that.
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.
Ex. (ignore syntax, been a while since i used VB)
Button1.OnClick (
Text1.text = Button1.label
}
Or something like that.