09-13-2012 09:21 AM - edited 09-13-2012 09:21 AM
Is it possible to check a numeric control while typing... i mean dynamic checking. I have a table and I want to check whether the (1,1) element is greater than 10 while i type. Now at the moment it is possible only after you enter a a value and click in another cell.
thanks
09-13-2012 10:07 AM
Hi Nghtcrwlr,
String control has the 'update while typing' option.I don't think its readily available for Table control
09-13-2012 10:13 AM - edited 09-13-2012 10:13 AM
09-13-2012 10:51 AM - edited 09-13-2012 10:52 AM
Hi Nightcrwlr,
I have made something in the line with Gerdw's suggessiton.
The values from table gets updated only when there is change in Keyfocus. I have used a dummy control to shift focus after every key press.
You can make changes as per your requirement.
09-17-2012 09:03 AM
Thanks Frabto...Your draft version is a good example.. The only problem is that you cant type a 2 or 3 digit number. It always blinks in the 1 digit.
10-11-2012 04:46 PM
I came across this post while looking for something similar to the "update value while typing" that strings possess, but for numerics. This helped me solve the issue, with some modifications that might be useful to others. Here's my solution which could help fix the issues others are seeing.
-Jody