popeye
29th January 2002, 02:22
Hi,
Have you guys ever tried changing the session description
in the script? :)
~Vamsi
29th January 2002, 03:15
I have done this about 3 years ago on Baan 5.c, so ymmv. In Baan 5.c the overview and detail session are the same. This is accomplished using the DFE (Dynamic Forms Editor). According to Baan GUI Standards the overview session needs to have plural form while the detail session needs to have a singular description.
For example:
Overview ==> Items
Detail ==> Item
This was accomplished by creating a message with the same name as the session
after.form.read:
if (fattr.occurnr = 1) then
if not pos(form.text$(prog.name$),prog.name$) then
sattr.descr$ = form.text$(prog.name$)
endif
endif
after.form.read is undocumented. Check your version of ttstpstandard before using it. Also sattr.descr$ is described as being read-only in Baan documentation :).
sunil124
30th January 2002, 03:25
Hi
You could try this. This works for sure on baanIV.
set.mwindow.title("This is a test").
Put this in init.form.
Sunil
popeye
30th January 2002, 03:45
Thanks Sunil !
You made my day :)