program Exif; uses Forms, umain in 'umain.pas' {MainForm}, umakernote in 'umakernote.pas' {fMakerNote}; {$R *.RES} begin Application.Initialize; Application.Title := 'Exif Demo'; Application.CreateForm(TMainForm, MainForm); Application.CreateForm(TfMakerNote, fMakerNote); Application.Run; end.