ASCII Characters?

Ripley

Registered User.
Local time
Today, 18:25
Joined
Aug 4, 2006
Messages
148
Is there a way in VBA to display a certain ascii character by its identifier?

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?
 
same function in VBA. you did search Access help first before posting ?
 

Users who are viewing this thread

Back
Top Bottom