Page 1 of 1

VLF-Win Status bar (RESOLVED)

Posted: Tue Jun 18, 2019 2:56 am
by atostaine
Is there a way to add information to the bar at the bottom? We currently are using set_Session_value in our embedded interface point to indicate the user is in test mode. Maybe even in the window title?

We would like to show Test=True or simply the word TEST when in test mode. Is there a good way to display this somewhere on the VLF-WIN window?
screen_shot.png
screen_shot.png (19.14 KiB) Viewed 11785 times
Thanks, Art

Re: VLF-Win Status bar

Posted: Tue Jun 18, 2019 10:06 am
by MarkD
Try this in your framework’s main IIP (i.e. your version of the shipped example UF_SYSTM) in the avMAINWindowReady method:

Code: Select all

#Window.FIM.uStatusManager.uUser := *User + " - TEST"

Re: VLF-Win Status bar

Posted: Tue Jun 18, 2019 10:22 am
by atostaine
Thanks Mark.

Re: VLF-Win Status bar

Posted: Fri Oct 25, 2019 3:44 am
by atostaine
Is it possible to get the value of #Window.FIM.uStatusManager from a business object command?

Re: VLF-Win Status bar

Posted: Tue Oct 29, 2019 9:58 am
by MarkD
Try just #FIM.uStatusManager

Re: VLF-Win Status bar

Posted: Tue Oct 29, 2019 10:04 am
by atostaine
Thank you