= Question: How to create the right-side toolbar for a LayerEditor? = I'm trying to create a layerEditor plugin with the right-side vertical toolbar as seen in the local point editor. Upon pressing my editor button in the top horizontal toolbar the right-side vertical toolbar would appear. Can this be done in C# .NET? Is there any sample code that does this? = Environment = || !FalconView Version: || FalconView 4.1 || || Interface: || [wiki:ILayer] || || Language: || C# VS 2005 %EDITCELL{checkbox, 7, C++, C# VS 2003,C# VS 2005, Visual Basic, Visual Basic.Net, Java, C++.Net}% || -- Main.GordonYe - 09 Sep 2008 = Answer = You're looking for AddToolbar functionality from [wiki:ILayer]: =long AddToolbar(BSTR filename, long num_buttons, BSTR toolbar_name,= =long initial_position, VARIANT separator_list,= =long num_separators);= using initial_position values: * =CLIENT_TOOLBAR_TOP 0= * =CLIENT_TOOLBAR_BOTTOM 1= * =CLIENT_TOOLBAR_LEFT 2= * =CLIENT_TOOLBAR_RIGHT 3= Check out the [wiki:GetTheSdk SDK] under MapServer-ICD for more details.