Once I create the menu (using Derez app), is there a way to add a submenu to a main menu category (in my example above adding the actual rep names....).
Best regards.
Sandy
I have a recollection of having done this in vb...
Dim m As Menu = menus.Get("ServiceRep") 'based on the Tag property
m.MenuItems.Clear
Dim m1 As MenuItem
m1.Initialize("Item 1", "m1")
m.MenuItems.Add(m1)
I am using Derez wonderful alternative to create menu items (a Menu Designer - see this post) as opposed to creating JSON strings.
I did not quite understand your reply...
Once I create the menu (using Derez app), is there a way to add a submenu to a main menu category (in my example above adding the actual rep names....).
Best regards.
Sandy
I have a recollection of having done this in vb...