GianAutoitprogrammer 0 Posted May 25, 2011 Hellow I found this code somewhere in this forum... I think this code will allow your scripts to add a command line parameters If $CmdLine[0] > 0 Then ;Select $cmdline[1] Select $CmdLine[1] ; ERROR Line: 2 Syntax Error ~~~~~~~~~~~~~~^ Case "/function1" _Function1() Case "/function2" _Function2() EndSelect EndIf i am having problems @ the $cmdline[1] I dont know if I am missing something... but I just want to add my script some command line arguments... Share this post Link to post Share on other sites
wakillon 404 Posted May 25, 2011 As you writed script, use Switch instead of Select. AutoIt 3.3.14.2 X86 - SciTE 3.6.0 - WIN 8.1 X64 - Other Example Scripts Share this post Link to post Share on other sites
water 2,409 Posted May 25, 2011 Your Select statement is wrong. Please have a look at the helpfile or use Switch. My UDFs and Tutorials: Spoiler UDFs:Active Directory (NEW 2020-10-10 - Version 1.5.2.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX (NEW 2020-12-15 - Version 1.6.3.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX_GUI (2020-06-27 - Version 1.3.2.0) - DownloadOutlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - WikiTask Scheduler (2019-12-03 - Version 1.5.1.0) - Download - General Help & Support - WikiTutorials:ADO - Wiki, WebDriver - Wiki Share this post Link to post Share on other sites
GianAutoitprogrammer 0 Posted May 25, 2011 thank you wakillon it worked! Share this post Link to post Share on other sites
wakillon 404 Posted May 25, 2011 thank you wakillon it worked! Or like this... If $CmdLine[0] > 0 Then Select Case $CmdLine[1] = "/function1" _Function1() Case $CmdLine[1] = "/function2" _Function2() EndSelect EndIf AutoIt 3.3.14.2 X86 - SciTE 3.6.0 - WIN 8.1 X64 - Other Example Scripts Share this post Link to post Share on other sites