Guest k_tammam_i Report post Posted 04/23/2008 11:37 AM Hi, When I use this Case statement form, VG give me error '------------------------------ my_number = 10 Select Case my_number Case 1 to 10 : do something End Select '------------------------------ when I use this Form it's working '------------------------------ my_number = 10 Select Case my_number Case 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 : do something End Select '------------------------------ but the second one is long Share this post Link to post
SupportTeam Report post Posted 04/23/2008 06:56 PM You should confirm if the first attempt is valid VBScript syntax. You can test VBSscripts outside VoiceGuide by just saving them in a .vbs file and double clicking on that file. Windows itself will then try to run a VBScript. Share this post Link to post