I need a "constructor" event in my menu to put some script in it.
In fact my application open a popup menu and I want to change dynamically
the popup menu without changing all the scripts where it is called.
My idea is to put my script in the menu itself. but where?
Lilian.
--
Paul Horan[TeamSybase]
Cynergy Systems
www.cynergysystems.com
"Lilian Pigallio" <lpig...@nospam.com> wrote in message
news:441abc26@forums-2-dub...
<Philip Salgannik> a écrit dans le message de
news:441af632.19b...@sybase.com...
global type m_base_item from menu
end type
global m_base_item m_base_item
on m_base_item.create
m_base_item=this
call super::create
f_test("Menu Creation")
end on
on m_base_item.destroy
call super::destroy
end on
<Philip Salgannik> a écrit dans le message de
news:441ecb74.50e...@sybase.com...