Hiiii everybody. i wanna know is there any function in vb which can tell me the ascii values of the subscript(element) of an array....... or can we write a function for this. if possible please help......... thanx in advance.
Code: Private Sub Form_Load() Dim str1 As String str1 = "Some Text" Text1.Text = Asc(Mid(str1, 3)) 'Display ascii value of 3rd character i.e 'm' in textbox End Sub