有没有一种方法可以将excel文件嵌入我的可执行文件(exe)?

时间:2019-11-01 04:07:14

标签: excel vba exe autohotkey

我创建了一个AutoHotKey可执行文件来打开启用了宏的Excel。我只想与同龄人共享exe文件(而不是excel文件)。有可能吗?

1 个答案:

答案 0 :(得分:3)

当然。这很容易。请参考:

FileInstall : 将指定的文件包含在脚本的编译版本中,并将其写入Dest。

FileInstall, Source, Dest [, Overwrite]

https://www.autohotkey.com/docs/commands/FileInstall.htm

并查看示例:

FileInstall, C:\My Documents\My File.txt, %A_ProgramFiles%\My Application\Readme.txt, 1

FileInstall, Make Dragon Commands - Copy.png, %Me%.png, 0
Gui, Add, Picture, , %Me%.png  ;  add a graphic
FileDelete, %Me%.png

将图形添加到gui。