Page 1 of 1

nuSetFormTitle from table

Posted: Thu Jan 12, 2023 1:56 pm
by acroporax
Hi All,
How can I get Nu Form Header data from table

For example;

t=Select * from dbupdatetime ;
nuSetFormTitle('Last data update:' & t ) ;

Re: nuSetFormTitle from table

Posted: Thu Jan 12, 2023 2:13 pm
by kev1n
The easiest way is probably to place the SQL in a (hidden) display object and set the form's title like this:

Code: Select all

nuSetFormTitle('Last data update:' + nuGetValue('select_object_id_here') ) ;

Re: nuSetFormTitle from table

Posted: Fri Jan 13, 2023 9:02 am
by acroporax
Thanks.