How do I accept user input with a multi-line textbox in Inno Setup?
I have an installer built with Inno Setup and I'm currently accepting input using the "TInputQueryWizardPage" control. However, this only allows for a single line of text in the textbox. Is there a way to ac开发者_如何学JAVAcept input with a multi-line textbox in Inno Setup?
You can create a TMemo/TNewMemo object and put it on any control (obj.Parent := parentpage
). You will need to handle getting and settign it's value directly rather then going through the parent control though.
精彩评论