Custom appbuilder

K4sh

Member
Hello everyone,

I wanted to know if it's possible to customise the appbuilder title.
It would be very useful as i frequently launch 2 appbuilder session which are not identified.
 

Casper

ProgressTalk.com Moderator
Staff member
You could achieve that goal by changing the _adeevnt.p procedure and using a specific ini file for startup of each appbuilder session you start.

If you need an example of this I can give it to you....

Regards,

casper.
 

kartikeya.sharm

New Member
DEFINE VARIABLE cname AS CHARACTER NO-UNDO.
DEFINE VARIABLE h AS HANDLE NO-UNDO.

h = SESSION:FIRST-CHILD.
DO WHILE VALID-HANDLE(h):
IF h:TITLE MATCHES "*AppBuilder" THEN
h:TITLE = "AppBuilder " + " kSharma".
ELSE
h = h:NEXT-SIBLING.
END.
 
Top