Hello. I'm trying add Form in my DLL, and i hide it with next constraction:
procedure Start;
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.ShowMainForm := False;
Application.Run;
end;
exports
Start;
Earlier, in previous versions Delphi, my DLL worked normal, but exactly in 12-th Delphi version, all broked. When i launch my library through app, it's working normal, but when i launch through rundll32.exe - no one component on Form1 not working. What Embarcadero broked in this time and how fix it?
P.S. I attach my project to this topic, you can open it and look all youselfe.
Fucking DLL.zip