J
John Bruen
Why do I get the above error message when I try and set
certain positions of a string using the following
statement?
Dim StringX as string
Dim MyStart as Integer
Dim MyLength as Integer
StringX = ""
MyStart = 5
MyLength = 10
MyString = "aaaaaaaaaa"
Mid$(StringX, MyStart, MyLength) = Mystring
Is there any other way to do this?
certain positions of a string using the following
statement?
Dim StringX as string
Dim MyStart as Integer
Dim MyLength as Integer
StringX = ""
MyStart = 5
MyLength = 10
MyString = "aaaaaaaaaa"
Mid$(StringX, MyStart, MyLength) = Mystring
Is there any other way to do this?