var fDesc=new Array(); fDesc[0] = "If you are a software developer primarily focused on desktop applications for Windows, you should know that after you finish your work, you have to "package" it for distribution. If you like to use the powerful Inno Setup installer generator, then you will be very glad to try this fully-featured tool.
Inno Setup Form Designer (ISFD) could be seen as a complete Integrated Development Environment (IDE), that acts as a GUI for the Inno Setup application (the compiler). From within this excellent software, you will be able to design and customize your own forms as you ever do it.
From the first time you use the application, you will feel like you are using Visual Studio, the workflow in ISFD really resembles it a lot. You can add every kind of controls, labels and images. Even some special rich controls like tree views and rich text boxes. Then, you can change the inserted object properties from the Object Inspector. Resize, lock, align, define tab order...everything you need to create a custom form that exactly fits your needs.
Then, as you design your form, you can select the generated code sample, paste it into your Inno Setup script and test it. You will love it!"; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }