07-05-2011, 01:43 PM
(This post was last modified: 07-05-2011, 01:46 PM by AutomationTester2011.)
Code:
Dim work(2)
work(0) = "Mon"
work(1) = "Tue"
work(2) = "Wed"
Erase work
ReDim work(5)
work(3) = "Fri"
PRINT work(4)
i have executed the above script and it is throwing error..i'm not sure why it is giving error..Can anyone correct the script
Thank you