This simple example raise exception (invalid parameter) when double clicking on Button1.
You may have to click several times to get the message.
What is wrong with this code ?
type
TForm2 = class(TForm)
Button1: TButton;
procedure Button1Click(Sender: TObject);
end;
TTestThread = class(TThread)
protected
procedure Execute; override;
end;
var
Form2: TForm2;
implementation
{$R *.dfm}
procedure TForm2.Button1Click(Sender: TObject);
var MyThread : TTestThread;
begin
MyThread:=TTestThread.Create(true);
MyThread.FreeOnTerminate:=True;
MyThread.Priority:=tpHighest;
MyThread.Resume;
end;
{ TTestThread }
procedure TTestThread.Execute;
var len : integer;
begin
len := Form2.Canvas.TextWidth('test');
if (len=0) then
Raise Exception.Create(SysErrorMessage(GetLastError));
end;
end.
TThreadshell code created byFile->New->Other->TThread Unittell people "Don't access visual components from the thread unless you use Synchronize", and no one bothers to read it, and asks the same question: "Why isn't my thread working right when I access visual controls from within it?" – Ken White Oct 1 '12 at 13:16