我只是想知道如何设置它。用户应通过以下方式选择 jar 文件:
Case $fileitem
$file = FileOpenDialog("Choose file...", "\", "Jar Files (*.jar*)")
然后 $file 中的文件应该用于:
Run("java " & $chosen & $file, "", $Hide)
使用 $file 而不是 location 会产生错误,因为目录有空格。我怎样才能给变量引号?没有选择的正常情况是:
Run("java " & $chosen & ' -jar spigot-1.6.2-R0.1.jar', "E:\Spill\Alle spill\Minecraft\KnarCraft 2013", $Hide)
还。我将它写入一个文件:
IniWrite("C:\Config.ini", "Server File", "File1", $file)
我应该如何阅读它,这样您就不必选择两次。