trying to assign names of various boxes to an array
ie testarray = Array("Check1","Check2","Check3")
then based on value of a different control box change the values of these in the array to conform
ie
if checkall.value = true then
for i = 1 to 3
testarray(i).value = true
next i
else
for i = 1 to 3
testarray(i).value = false
next i
end if
this is not working..."Object doesnt support this method or property" is the error msg that i receive...does anyone have any idea as to how i can correct this problem? thanks
ie testarray = Array("Check1","Check2","Check3")
then based on value of a different control box change the values of these in the array to conform
ie
if checkall.value = true then
for i = 1 to 3
testarray(i).value = true
next i
else
for i = 1 to 3
testarray(i).value = false
next i
end if
this is not working..."Object doesnt support this method or property" is the error msg that i receive...does anyone have any idea as to how i can correct this problem? thanks