hi

can some1 pls help. i am creating a customized toolbar in powerpoint and adding different buttons. i am also adding font color button to the toolbar. the following is the code to add a font color button to the toolbar.

Set cbPopup = .Controls.Add(Type:=msoControlSplitButtonPopup, Id:=401, Before:=25)
With cbPopup
'Automatic color
.CommandBar.Controls.Add Id:=1926

'Standard colors
.CommandBar.Controls.Add Id:=1928

'More colors button
.CommandBar.Controls.Add Id:=1005

End With

the above code adda a font color button to the toolbar and it also displays more colors but the automatic and standard colors are not displayed. can some1 plz help as to wht shuld i do to display automatic and standard color in the font color button.