Hi all,

I am using the QDoubleValidator to validate a QLineEdit field that must contain 10 numerical digits, I am trying thus more without success.

QValidator *doupleValidatorTell = new QDoubleValidator(0, 1, 9, this); /* allowed to type (10 digits) */
txtTest->setValidator(doupleValidatorTell);

Cris