I've got a TImageEnFolderMView in a panel on a VCL form in Delphi12. I get the correct "SelectedFileName"  and seem to get a "SelectedImage" index number from an "OnClick" event handler. I want to retrieve the EXIF values and have mucked around with the EXIF demo.
  thmbImages.MIO.ParamsFromFile( thmbImages.SelectedFilename );
  with thmbImages.MIO.Params[thmbImages.SelectedImage] do
  begin
    lblCamera.Caption := String( EXIF_Make ) + ' ' + String( EXIF_Model );
    lblLens.Caption   := String( EXIF_LensModel );
    ...
  end;
All the images are JPG files.
I've got a couple of challenges:
[1] The camera make and model shows up in IrfanView but not in my app. Am I missing something?
[2] I don't seem to be loading the correct parameters
I am a "newbie" to IamgeEn and am really impressed with the product. I'm planning to have users edit IPTC file info but first step is to display image EXIF info.
Any assistance/guidance will greatly be appreciated.
R.