hi evryone.
i really dont get it. i want to put keyboard shortcuts on the button i have other than clicking this buttons. but the problem is i dont know how. i tried putting an ampersand (&) sign before the text of the buttons and it work, but the ampersand sign also displays. heres the original code:
Button1.Text = Mid(ChoosenWord, PickedSeq(0), 1)
Button2.Text = Mid(ChoosenWord, PickedSeq(1), 1)
Button3.Text = Mid(ChoosenWord, PickedSeq(2), 1)
Button4.Text = Mid(ChoosenWord, PickedSeq(3), 1)
Button5.Text = Mid(ChoosenWord, PickedSeq(4), 1)
and this is what i did:
Button1.Text = "&" & Mid(ChoosenWord, PickedSeq(0), 1)
Button2.Text = "&" & Mid(ChoosenWord, PickedSeq(1), 1)
Button3.Text = "&" & Mid(ChoosenWord, PickedSeq(2), 1)
Button4.Text = "&" & Mid(ChoosenWord, PickedSeq(3), 1)
Button5.Text = "&" & Mid(ChoosenWord, PickedSeq(4), 1)
the text of this buttons is only one character from the string "ChoosenWord" with a character of "PickedSeq()". so if ChoosenWord contains "this" and the character is PickedSeq(0), then the text of the button is "t".
Can someone plese help me? thanks in advance.