How do i input "/" as a slash but not a division sign?
Printable View
How do i input "/" as a slash but not a division sign?
Try this Chr(47).
Debug.Print "Peter" & Chr(47) & "Robert"
how do you get weird characters like
¿
in code?
You can either use Character Map application that comes with Windows or you can write a little code to show ASCII characters:
Note: requires a Listbox for this to work.Code:Private Sub Form_Load()
Dim i As Integer
For i = 0 To 255
List1.AddItem "ASCII: " & i & " Character: " & Chr(i)
Next
End Sub