我希望用户在安装过程中选择一个许可文件,如何创建这种对话框?任何人都可以显示一些示例代码吗?
问问题
1408 次
1 回答
6
Inno Setup 文档中有一个代码示例(请参阅“Pascal 脚本”、“支持函数参考”、“对话框函数” - 您可以从这里开始):
var
FileName: string;
begin
// Set the initial filename
FileName := '';
if GetOpenFileName('', FileName, '',
'Text Documents (*.txt)|*.txt|All Files|*.*', 'txt') then
begin
// Successful; user clicked OK
// Filename contains the selected filename
end;
end;
于 2013-10-24T19:52:03.983 回答