VLF-ONE Customize Logon Handler (solved)
Posted: Fri May 03, 2019 2:50 am
Trying to find more information on how to customize the UI for the logon handler. The docs keep pointing to the source of UF_OEXEC which in turn points me to here. https://docs.lansa.com/14/en/lansa048/i ... 8_8285.htm which tells me that it must have an ancestor of VF_AC026O.
Creating a panel that extends VF_AC026O I get
Not sure what to do with this so I searched the docs for VF_AC026O and came across this https://docs.lansa.com/14/en/lansa048/c ... 8_6045.htm which in turn says to ask on the forum for more details and examples. This is what the default logon handler (VF_AC026O) looks like (we've added a header). I want to clean up the "Change Password" section to look a bit cleaner.
How do I go about doing that with the above code?
Thanks,
Joe
Creating a panel that extends VF_AC026O I get
Code: Select all
function options(*DIRECT)
begin_com role(*EXTENDS #VF_AC026O) height(409) width(500)
define_com class(*ANCESTOR) name(#Panel_ChangePlatformP) width(486)
define_com class(*ANCESTOR) name(#Panel_Logon) width(486)
define_com class(*ANCESTOR) name(#ShowChgPswOption) width(488)
define_com class(*ANCESTOR) name(#ShowMessageText) width(487) top(381)
end_com
Not sure what to do with this so I searched the docs for VF_AC026O and came across this https://docs.lansa.com/14/en/lansa048/c ... 8_6045.htm which in turn says to ask on the forum for more details and examples. This is what the default logon handler (VF_AC026O) looks like (we've added a header). I want to clean up the "Change Password" section to look a bit cleaner.
How do I go about doing that with the above code?
Thanks,
Joe