Quote Originally Posted by jacek
You might try to reimplement this:
or QTable::createEditor().
yes it works like this en thnx for the information.. i have now another problem with the validate values.. i want to type only the integers bigger than 2 and smaller than 16000. i have this line code:---

Qt Code:
  1. QRegExp RegExp( "^[3-9]\\d{0,4}$" );
To copy to clipboard, switch view to plain text mode 

but this is ofcourse not good because i validate the values between 3 to 9 and with 4 zeros.. is there a way to just validate this 2> and <16000??

thnx in advance..