how would i set the keyascii value to 0 to not allow the ' mark to be typed in a textbox? i have the following
Private Sub txtFullName_Press(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles txtFullName.KeyPress
If Asc(e.KeyChar()) = 44 Then
Asc(e.KeyChar) = (0) ' <~~~ ??????
End If
End Sub
