Delphi fruit machine images

Posted by Jenny on April 18, 2005

In Reply to: fruit machine help posted by sima on April 16, 2005

: hiya i am a university student programming a fruit machine in delphi i was wondering can you help me. I wanted to know how to upload images into a shape. Is this possible to do because i can't seem to code it.
: thanks sima

Use a TImage component for this. You can load its Picture in the Object Inspector, or during runtime with:

  Image1.Picture.LoadFromFile(FileName); 

Good luck!
Jenny