Victor Smith said:
Argument 'Length' must be greater or equal to zero.
If your seeing this in place of all my posts on MLS, your not seeing things, I had a major “Critical Path Error” FUBAR when I was updating my profile today, all I can do is wait till someone figures out what went south, its frustrating but thats all I can do, my MLS webstorage is functioning fine, go figure, Vic
Interesting. Looks like Null (i.e., undefined) is being passed to a LEN() function.
LEN() is a programming construct that returns the length of a character string. For example, LEN(“Victor”) = 6.
Let’s create two variables, one to hold your name, one to hold the length of your name. Let’s call them x and y.
Dim x As Variant
Dim y As Long
x = “Victor”
y = LEN(x)
Print y
6
Note how the example chooses to define x as Variant. In at least one programming language, this allows x to be Null, which allows this to happen:
Dim x As Variant
Dim y As Long
x = Null
y = LEN(x)
We never get to see the value of y, because an error will be generated. LEN() can’t handle a Null value.
Looks like you have been NULLed, Vic. They will come to take you away shortly. Bye-bye!!!