如何获取以下脚本来运行我的 test.pdf 文件?
$Form1 = GUICreate("Form1", 413, 305, 302, 218)
$Combo1 = GUICtrlCreateCombo("Make Selection", 184, 48, 153, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
$Combo1 = GUICtrlSetData(-1, "test1|test2|test3")
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Combo1
$nMsg2 = GUIGetMsg()
Switch $nMsg2
Case "test1"
ShellExecute("C:\test.pdf")
EndSwitch
EndSwitch
WEnd