Jon Tackabury
Jon Tackabury

Reputation: 49289

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 accept input with a multi-line textbox in Inno Setup?

Upvotes: 2

Views: 634

Answers (1)

Deanna
Deanna

Reputation: 24283

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.

Upvotes: 3

Related Questions