[HELP] Symbols
im working on a project and i need to make hotkeys using symbols.
i know how to do it with letters..
how can i change Keys.A/Keys.Space to use symbol as a hotkey.. like a . or , or " ...
i know how to do it with letters..
Code:
GetAsyncKeyState(Keys.A) Then TextBox1.Text = TextBox1.Text + "a" OR GetAsyncKeyState(Keys.Space) Then TextBox1.Text = TextBox1.Text + " [SPACE]"

