Hi All,
How can I get Nu Form Header data from table
For example;
t=Select * from dbupdatetime ;
nuSetFormTitle('Last data update:' & t ) ;
Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
nuSetFormTitle from table
-
- nuBuilder Team
- Posts: 4297
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 71 times
- Been thanked: 444 times
- Contact:
Re: nuSetFormTitle from table
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') ) ;