The problem comes from the mechanic used to ensure the thread won't start until all constructors are done (Like mentioned by David).
You see, all thread are actually created in suspended state no matter what you pass as argument to the constructor. This is done to ensure the thread don't actually starts before the constructor has finished its work. Starting the thread is done once all the constructor are done in the AfterConstruction function (If CreateSuspended is false). Here's the pertinent part of code to your problem:
procedure TThread.AfterConstruction;
begin
if not FCreateSuspended and not FExternalThread then
InternalStart(True);
end;
procedure TThread.Start;
begin
InternalStart(False);
end;
procedure TThread.InternalStart(Force: Boolean);
begin
if (FCreateSuspended or Force) and not FFinished and not FExternalThread then
begin
FSuspended := False;
FCreateSuspended := False;
if ResumeThread(FHandle) <> 1 then
raise EThread.Create(SThreadStartError);
end
else
raise EThread.Create(SThreadStartError);
end;
What happens in your situation is, when you call Start, it works fine. It calls InternalStart which clear the FSuspended and FCreateSuspended flag and then resume the thread. After that, once the constructor is done, AfterConstruction is executed. AfterConstruction checks for FCreateSuspended (Which has already been cleared in the call to Start) and try to start the thread, but the thread is already running.
Why calling resume works? Resume don't clear the FCreateSuspended flag.
So, to sums it, if you want your thread to start automatically once it's created, just pass False to the CreateSuspended parameter of TThread's constructor and it will work like a charm.
As for the reason Resume/Suspend are deprecated... My best guess is that it was bad practice to suspend thread in the first place (beside at creation) because the was no guarantee on the state of the thread when it's suspended. It could be locking a resource, among other things. If said thread has a message queue, it would stop answering them which cause problems for process relying on broadcast message, like using ShellExecute to open a URL (At least with Internet Explorer, not sure if other browsers are affected). So, they deprecated Resume/Suspend and added a new function to "Resume" a thread that was created suspended (i.e. Start).