Topic: Load Image into ImageBox

Hi,
How can I load an Image from an address like it : "C:\image.jpg" into an Image box ?

Thanks a lot

Re: Load Image into ImageBox

Hello,


Form1.Image1.Picture.LoadFromFile('c:\photo.jpg');
Dmitry.

Re: Load Image into ImageBox

Thanks a lot Dear Dimitri,
Can you tell me how can I get TEXT of selected row in DataGrid ? (For Image address big_smile)

Re: Load Image into ImageBox

Form1.TableGrid1.Cells[0,Form1.TableGrid1.SelectedRow]

where 0 - first column

Dmitry.