HI.
Suddenly I am unalbe to create a VCL New Project.
When I launch it in the IDE it freezes for a long time.
The task manager shows a strange list of proceses (see attached image.
This is the project code: (form 3 does nothig, it only contains a stringgrid. Any idea?
program Project4;
uses
Vcl.Forms,
Unit3 in 'Unit3.pas' {Form3};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm3, Form3);
Application.Run;
end.