Is there any way to hide the system colors list into a ColorList editor?
The system colors list into a ColorList editor is visible only if the Editor.Option( exColorShowSystem ) is True. Use the Editor.Option( exColorShowSystem ) = False to hide the system colors list into a ColorList editor. The following sample displays only the palette colors list: With Grid1 .MarkSearchColumn = False With .Columns.Add(“Color”).Editor .EditType = ColorType .Option(exColorShowSystem) = False End With With .Items .AddItem vbBlack .AddItem vbWhite End With End With Use the Editor.Option( exColorShowPalette ) = False to hide the palette colors list into a ColorType editor.