Hello I am currently working on a program and I would like to add a button that would allow the user to Load a picture from his computer into the Image
procedure TForm1.btnLoadPicClick(Sender: TObject);
begin
img1.Picture.LoadFromFile( 'test.1');
img1.Stretch := True ;
I was using this code but it limits the person to only being able to use that specific picture and I would like him to select one from his Computer thanks :)