Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

Is there any way to hide the system colors list into a ColorList editor?

colors editor Hide list system
0
10 Posted

Is there any way to hide the system colors list into a ColorList editor?

0
10

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.

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123