/ Forums / Advansys Formativ / Creating Solutions with Formativ / Changing picture of TImage / Reply To: Changing picture of TImage
October 11, 2009 at 4:53 pm
#8136
Use TImage.Picture.LoadFromFile() method, see the modified code below.
Sub Main(Client, GWEvent) form.ShowModal() End Sub Sub btnClick(Sender) form.img.Picture.LoadFromFile("D: 0.bmp") End Sub
Regards,
Advansys Support