I want to show some web page INSIDE Inno Setup installer page, how can it be embedded? I was thinking of using cwebpage.dll ( http://www.codeproject.com/Articles/3365/Embed-an-HTML-control-in-your-own-window-using-pla ), but I have no idea how to use this dll with the means of Inno Setup scripting. If there are some other means, please help.
It's not possible directly in InnoSetup, you can use only components listed in the Classes Reference
. However you can embed your setup with the custom form from a library e.g. this way
.
I've created an example of such library with a sample InnoSetup script. This project is hosted here
.
SetParent
of it to the setup page ? Even if this would be possible I strongly suggest to don't do that - TLama 2012-04-04 09:31
WizardForm.WelcomePage.Handle
in [code]
section of your script - TLama 2012-04-04 09:48
"shellexec" an .html file or web link. That's all there is to it :)