is there a way to find out if the element exist ?
dim myarray() as string
dim mytxt as string
mytxt ="Superman1,Sup erman2,Superman 3,Superman4"
myarray=mytxt.s plit(",")
debug.print(mya rray(4))
theelemet myarray(4) doesn't exist how do i find out if it exist or not
with out doing ubound or GetUpperBound
thank you
dim myarray() as string
dim mytxt as string
mytxt ="Superman1,Sup erman2,Superman 3,Superman4"
myarray=mytxt.s plit(",")
debug.print(mya rray(4))
theelemet myarray(4) doesn't exist how do i find out if it exist or not
with out doing ubound or GetUpperBound
thank you
Comment