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

TAdvAlertWindow
This code snippet shows how the AdvAlertWindow can be used to programmatically show an alert:

with AdvAlertWindow1.AlertMessages.Add do
begin
  Text.Text := 'This is an alert with <b>HTML</b> formatted text.';
  AdvAlertWindow1.Show;
end;