I want to show the content like in below image in installation step of installer...i have used memo for showing the content..but memo is not appropriate control..as then it looks like a textbox if user puts focus on the memo field... see below image.. when user comes to this step,the first memo field is selected...
相关问题
- Inno Setup - Run InstallUtil from .Net 4.5 Locatio
- ISCC - /D compiler-parameter seems to have no effe
- Setting DestDir from Inno Pascal?
- Unpin app from taskbar, startmenu using Inno Setup
- How to restrict user input of the directory edit b
相关文章
- In inno setup how to set the unins000.exe with pro
- Is it possible to create checkbox tree view in Inn
- How to add a region drop-down in Inno Setup?
- Signing installer of my program generated by Inno
- How to check 64/32-bit in Inno setup
- Inno Setup - How to create checkboxes at finished
- Inno Setup - BorderIcons dropdown menu
- Inno Setup - How to display a message after instal
Use either
TLabel
orTNewStaticText
component (theTNewStaticText
seems to be preferred inside of InnoSetup) and set it the following:WordWrap
property toTrue
AutoSize
property toFalse
Then just stretch the components into your desired positions and the text will fit to that bounds, just like shown in this example:
And the result: