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 >>

TAdvSmoothPanel
When clicking on a Hyperlink in the panel, nothing happens

You will have to implement the OnAnchorClick event and manually open the URL with ShellExecute:
uses
  shellapi;

procedure TForm186.AdvSmoothPanel1AnchorClick(Sender: TObject; Anchor:
string);
begin
  ShellExecute(0, 'open', pchar(anchor), nil, nil, SW_SHOWNORMAL); 
end;