oompah: I am trying to use the code to do it programtically but no matter what I do it still leaves your default logo and flower image in there. I assume programtically setting this I do not need to edit the Common.config file or do i need to do both here is my code Dim dropdown As CuteEditor.RichDropDownList Dim richitem As CuteEditor.RichListItem dropdown = DirectCast(cutefile.ToolControls("Images").Control, CuteEditor.RichDropDownList) richitem = dropdown.Items(0) dropdown.Items.Clear() dropdown.Items.Add(richitem) dropdown.Items.Add("Welcome", "<img src=" & Chr(34) & "images/Title-Welcome.gif" & Chr(34) & " alt=" & Chr(34) & "" & Chr(34) & " />") I also tried replaceing the chr(34) in the alst line with a single apostrophe - you can not put a double quote in there in vb it will cause a non valid string compiler error - you may want to alter that in the help file you referenced above. Please advise Hi oompah, Try this example <%@ Page Language="VB" %> <%@ Register TagPrefix="CE" Namespace="CuteEditor" Assembly="CuteEditor" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> Protected Overloads Overrides Sub OnLoad(ByVal e As EventArgs) If Not IsPostBack Then Dim toolctrl As CuteEditor.ToolControl = editor1.ToolControls("Images") If toolctrl IsNot Nothing Then Dim dropdown As CuteEditor.RichDropDownList = DirectCast(toolctrl.Control, CuteEditor.RichDropDownList) 'the first item is the caption Dim richitem As CuteEditor.RichListItem = dropdown.Items(0) 'clear the items from configuration files dropdown.Items.Clear() 'add the caption dropdown.Items.Add(richitem) 'add text and value dropdown.Items.Add("Logo", "<img src='Uploads/10n2.jpg'/>") 'add html and text and value dropdown.Items.Add("<img src='Uploads/12.jpg' /> ", "Flower", "<img src='Uploads/12.jpg'/>") End If End If MyBase.OnLoad(e) End Sub </script> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>Untitled Page</title> </head> <body> <form id="form1" runat="server"> <div> <CE:Editor ID="editor1" runat="server"> </CE:Editor> </div> </form> </body> </html> Regards, Ken