Subj : Help with TPicture To : borland.public.cpp.borlandcpp From : AP Date : Sat Nov 20 2004 10:20 pm Hello, I am new to boland c++ and would like some help with displaying images on a form without placing any image components on the form (i.e. loading the image from a set path and then displaying using canvas). TPicture *pic = new TPicture; pic->LoadFromFile("s.jpg"); pic->Canvas->Draw(50,50,pic); // Why doesnt this work? Why cant I access Canvas from pic so I can use the draw method to display the image on the canvas? I am totally confused, hope someone can help. Thanks Andrew .