I want to put a text box on my form that displays a total number of records from a select. for example:
select count(*) from emp where status='A'
select count(*) from emp where status='I'
I know it should be simple, I tried a new_form_instance event to assign the value of the select to a text box, but I havnt been able to get it to work.
thanks for any suggestions
select count(*) from emp where status='A'
select count(*) from emp where status='I'
I know it should be simple, I tried a new_form_instance event to assign the value of the select to a text box, but I havnt been able to get it to work.
thanks for any suggestions