Is it possible to show html page in installation page
Hi All,
I want to add simple html page in installer. Can I do it?
I didn't find sufficient control type in InstallOptions. Are there solution for this task?
thanks,
Roman
Archive: Is it possible to show html page in installation page
Is it possible to show html page in installation page
Hi All,
I want to add simple html page in installer. Can I do it?
I didn't find sufficient control type in InstallOptions. Are there solution for this task?
thanks,
Roman
You may create a html or hta, extract it somewhere and use an InstallOptions button or link control to execute it.
I might not be clear enough in my last post.
I want to be able to show data in html format on installer page.
For example: <b>Some bold text</b> should be : Some bold text
or
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
should be a list with three items.
Can I do it in NSIS?
Roman
This is the closest you will get, with an embedded browser window in the dialog.
http://nsis.sourceforge.net/NsWeb_plug-in
You cannot use HTML in any other Windows controls.
Stu