<div>Hi Peter,<br></div><div><br></div><div>in your main file (usually project1.lpr but i think yours was main_island.pas iirc) youll find something like...</div><div><br></div><div>uses </div><div>  Forms, Unit1, LResources, Unit2;  </div>
<div><br>begin<br>  Application.Title:='Exit';<br>  Application.Initialize;<br>  Application.CreateForm(TForm1, Form1); <br>  Application.CreateForm(TForm2, Form2); <br>  Application.Run; <br>end.<br></div><div><br>
</div><div>those Application.CreateForm() bits are where you can add/remove your MyForm or MyMainIslandForm (in my case ive been lazy and left MainForm and SettingsForm called Form1 and Form2)</div><div>you will want yours to be something like Application.CreateForm(TMyIslandForm, MyIslandForm); put your main form first so it is shown when your run the program.</div>
<div><br></div><div>dont forget to add whatever MyIslandFormUnit into the 'uses' if its not already there - like my (once again lazy) Unit1 and Unit2.</div><div><br></div><div><br></div><div><br></div><div>I also find <a href="http://freepascal.org">freepascal.org</a> site disorganised. although im using Lazarus over Delphi 5 Pro so it can't be all bad! freepascal excels at the compile anywhere thing.</div>
<div><br></div><div><br></div><div>HTH,</div><div>- V</div>