you could use substring method or create your own functions:
Function Left(ByVal str as string, byval index as integer) As String
Left=str.Substring(0,index
End Function
Function Right(ByVal str as string, byval index as integer) As String
Right=str.Substring(str.Le
End Function
Main Topics
Browse All Topics





by: Idle_MindPosted on 2006-03-13 at 13:20:16ID: 16178022
Use the Substring() function: library/de fault.asp? url=/libra ry/ en-us/c pref/html/ frlrfsyste mstringcla sssubstrin gtopic.asp
http://msdn.microsoft.com/