Hi,

I hope somebody in the forum knows VB.6. I am looking for a function that does the samething as Mid function in VB.6. Please see the below sample.

Dim MyString, FirstWord
MyString = "Mid Function Demo" ' Create text string.
FirstWord = Mid(MyString, 1, 3) ' Returns "Mid".


Thanks.