Frequently Asked Component Specific Questions

Options

Display all FAQ items

Search FAQ items:


Displaying items 1 to 1 of 1, page 1 of 1

<< previous next >>

TMS VCL UI Pack
Nothing 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;