[HELP] Symbolsim working on a project and i need to make hotkeys using symbols. 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]" how can i change Keys.A/Keys.Space to use symbol as a hotkey.. like a . or , or " ...
omg i just want to use those keys as hotkeys... i want to know what would i write after " Keys. " to use those symbol keys.