I'm making an Inno setup for my application. I'm using this command:
[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"; LicenseFile: "C:\Users\LocDaiLe\Desktop\license.txt"
to display a license agreement window, but I want two license agreement window right after each others. How can I archieve this - thank you
You have to code the second license page as a custom page.
You can start with the
CreateOutputMsgMemoPage
function, which creates a page with a memo. Then, you just add radio buttons for accepting the license.Original (first) license page:
Coded (second) license page:
I also had to display two license files, but I did it by adding these two lines to the setup sectiony:
Works like a charm for me