venkat001Occasional Contributor13 years agoDeclaring array in Testcomplete using VBscriptI need to declare an array of 7 integer elements using VB script, I getting "error 110: syntax error while lexinf character:" Tried below codes: 1. Dim arr={1,2,3,4,5,6,7} 2.Dim arr(...Show More
AlexKarasCommunity Hero13 years agoHi,Dim arr(7)arr(0)=1arr(1)=2arr(2)=3arr(3)=4arr(4)=5arr(5)=6arr(6)=7
Recent DiscussionsBreakpoints in external files with python 3.13?Oracle Forms window with dynamic name - unable to click on subsequent runsConverting VB Script Tests
Related ContentGoto in VBScriptHow to convert vbscript code to javascript in testcompleteVariable declaration in a javascript class