TMSFMXTaskDialog multiple inputs Edit

Hello,

Concerning the TTMSFMXTaskDialog (v 1.0.0.4) :

Is it possible to have 2 or more text inputs on one task dialog, like user name - password ?
if not, combining them in another control/panel to associate with TTMSFMXTaskDialog.InputSettings.Control would be possible ?

Thank you.

At this moment it isn't possible but this is a useful suggestion that we'll consider.

I tried to add a TRectangle  as the associated Control, and added two TEdit parented to it, and it works !!

A simple thought, easy to test, with a flawless result.

Getting back the value is quite straight forward :

TEdit(TMSFMXTaskDialog1.InputSettings.Control.Children[0]).Text
TEdit(TMSFMXTaskDialog1.InputSettings.Control.Children[1]).Text

Thanks anyway ^^,