When I search for Error 1407, I get posts about Application.Initialize needing to be executed ahead of CreateForm. However, in my case it is.
begin
{$I OpenLobby.lrs}
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
MainForm.ProgressBar1.Visible := False;
Application.Run;
end.
My code runs under Linux (at least so far as it starts up, displays the main form and some parts function). However, currently when I run it under Wine or in a Windows XP virtual machine, it fails to launch.
Any ideas?