Its been a while since I did a lot of Dexerity programming and there seems to be a difference in working with GP 10.
In the past I would put into the startup script something like this to get an extras menu.
set l_result to Trigger_RegisterForm(form Cards_Financial_Palette,
"Custom Application", "", script List_Setup_Window);
if l_result<>SY_NOERR then
warning "Form trigger registration failed.";
if l_result=LOCKED then
warning "This recrod has been locked";
else
warning "This error came from the Startup Script";
end if;
end if;
Now this command fails cause there is no Cards_Financal_Palette.
If I choose a form that does exist no extrats option appears.
What am I doing wrong?
Thanks in advance.