Hello,
I have a standard toolbar I use on all of my forms and for a couple of forms I add extra tools. The new tools appear at the end of the toolbar. Is there a way to change the display order of the Items on a toolbar?
Thanks,
Cameron
Thanks I'll try the to remove and add them. I thought there might be a display order or something but I couldn't find it.
Cam
In the designer, you can drag the tool to where you want it to be, in code you can try
ultraToolbarsManager1.Toolbars[0].Tools.RemoveAt(indexer);
ultraToolbarsManager1.Toolbars[0].Tools.InsertTool(index, key);