我有一些 VBA 代码并将其保存为 Excel 插件。我需要一种自动安装此 Excel 插件的方法。我想创建一个安装程序,以便我的用户可以运行安装程序来安装加载项。
我正在按照本指南自动安装加载项。
但我不明白如何使用 Setup Factory 作为指南添加脚本。例如,如何使用 Setup Factory 插入此脚本?
--Check whether Excel is opened.
sValues = Window.EnumerateTitles(true);
--Next line has SetupFactory 8 code
--for iCount, sValue in sValues do
for iCount, sValue in pairs(sValues) do
if String.Find(sValue, "Microsoft Excel", 1, true)>0 then
Dialog.Message("Error", "First close Microsoft Excel."..
String.Char(10)..String.Char(10)..
"Uninstaller will now abort.",
MB_OK, MB_ICONINFORMATION);
-- Make sure the process ends with a value other than 0
-- so the uninstall can be performed again.
Application.Exit(EXIT_REASON_USER_ABORTED);
end;
end;