if (browser.isIE)
{
x = window.event.clientX + ...
y = window.event.clientY + ...
}
if (browser.isNS || browser.isFF)
{
x = event.clientX + window.scrollX;
y = event.clientY + window.scrollY;
}
public static void main(String[] args)
{
SwingUtilities.invokeLater(new Runnable()
{
public void run()
{
new MainFrame().setVisible(true);
}
});
}
procedure TForm1.FormCreate(Sender: TObject);
begin
OutputMemo.Font.Color := clRed;
OutputMemo.Font.Size := 14;
OutputMemo.lines := FillOutputMemo(true);
end;
SELECT p1.id, p1.famname, p1.gname, p1.age
FROM personnel p1
WHERE p1.age
(
SELECT age
FROM personnel p2
WHERE p1.id <> p2.id
AND p1.salary < p2.salary);