Load image from embedded resource
问题 I am trying to assign an image(Image1) a picture at Run-time. Since I can't set a property to load from resource. So I need to load at run time. I have the code procedure TForm1.FormCreate(Sender: TObject); var RS:Tresourcestream ; begin RS := TResourceStream.Create(HInstance,'Splashscreen_Background', RT_RCDATA); image1.Picture.Bitmap.LoadFromResourcename(HInstance,'splashscreen_background'); end; But it just loads the forms with a blank Image. aswell as: procedure TForm1.FormCreate(Sender: