I have a TDataModule like this:

In this DataModule’s OnCreate event, I can see that BinMsg has been created, but NamedPipeChannel always nil, hence I have to manually create it inside OnCreate event, like below:
OnDataModuleCreate(Sender: TObject);
begin
if not Assigned(NamedPipeChannel) then
NamedPipeChannel := TRONamedPipeChannel.Create(Self);
end
Shouldn’t NamedPipeChannel be created already at the time of OnCreate event?