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!
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
nuSetFormTitle from table
-
- nuBuilder Team
- Posts: 4565
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 76 times
- Been thanked: 529 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') ) ;