teegotourl
Posted: Mon Nov 24, 2008 8:08 pm
As part of otherwise executing delphi program, drawing chart1, why would the following code raise an access violation error?
I cannot locate documentation on teegotourl - can you please guide me there?
Thank you.
Code: Select all
procedure Tbubble1f.Chart1MouseMove(Sender: TObject; Shift: TShiftState; X,
Y: Integer);
var i: Integer;
begin
i:=Series1.Clicked(X,Y);
if i<>-1 then
TeeGotoURL(Handle,Series1.Labels[i]);
end;
Thank you.