| Subject: | Issue After Multiple Selection of Images |
| Posted by: | Faiz Haque |
| Date: | Thu, 30 Sep 2010 |
Hello all..
I m getting problem after selecting multiple images Through TOpenPictureDialog.
After Selection how could i show the selected Images on TImage?
Below is my code to Select Images on Execution
if OpenPic.Execute then
abc := TBitMap.Create;
begin
imgS.Picture.LoadFromFile(OpenPic.FileName);
abc.LoadFromFile(OpenPic.FileName);
imglist.Add(nil,abc);
ShowMessage(Openpic.filename);
end;
openpic.Free;
But it's not adding multiple images into imglist()
Please help me i m new here as well as on delphi