Replies
Welcome, guest
Join CrazyEngineers to reply, ask questions, and participate in conversations.
CrazyEngineers powered by Jatra Community Platform
-
@komputergeek-Yf5hJ4 • Nov 16, 2008
use this :
Asc ( Mid ( String_name,Position ) )
sorry for late reply 😉 -
@CrazyBoy • Nov 16, 2008
komputergeekuse this :
Asc ( Mid ( String_name,Position ) )
sorry for late reply 😉Probably an example of this would help us in depth.
-Crazy -
@komputergeek-Yf5hJ4 • Nov 16, 2008
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