Frequently Asked Component Specific Questions
Options |
|
Display all FAQ items |
Displaying items 1 to 1 of 1, page 1 of 1
<< previous next >>

TMS VCL UI PackNothing happens when clicking on "More colors" in TAdvColorSelector
Use follow event to implement the custom color selection:
procedure TForm2.AdvColorSelector1Select(Sender: TObject; Index: Integer;
Item: TAdvSelectorItem);
begin
if Index = 40 then
begin
if colordialog1.Execute then
AdvColorSelector1.SelectedColor := colordialog1.Color;
end;
end;