I’m working on E10.2.200 version, and I need to add a new menu for Material Handling in handheld application. I researched in the forum and found some information but read that there have been some changes for 10.2.200 version. Has someone done this under a different menu than the main one and with the latest E10 version?
var menuCall = HHMenuForm.GetType().GetMethod("showMenu", BindingFlags.Instance | BindingFlags.NonPublic, null, CallingConventions.Any, new Type[]{typeof(int)}, null);
menuCall.Invoke(HHMenuForm, new Object[]{1});
I had menu items on 10.1.600 under each relevant menu, but when upgrading to 10.2.300 had to put a new “Custom Items” menu at the bottom of the main menu and then put my items there.
You used the above code to be able to put items into the existing structure? How do you trace what the ID of the existing menus are?
So instead of doing reflection and things on form loading, would it work to just insert entries into that table (using a UBAQ, and not SQL of course…!)