Is there a way in VBA to display a certain ascii character by its identifier?
For instance, in VB.NET the following would display:
A messagebox displaying "ABC".
Is their a VBA function to do this?
For instance, in VB.NET the following would display:
Code:
Private Sub DispASCII_Click()
Dim theval as String
theval = Chr(65) & Chr(66) & Chr(67)
MsgBox theval
End Sub
A messagebox displaying "ABC".
Is their a VBA function to do this?