Board index » cppbuilder » help! can't see my Panel

help! can't see my Panel

    Hi! What do I need to do after I derrived MyPanel from TPanel
class....how do I make it appear on MyMainform? I'm very new to BCB, please
help
    Thanks!

        John

 

Re:help! can't see my Panel


Be sure to set the Parent property of the new Panel.  For example...

MyPanel1->Parent = Form1;

OR

MyPanel1->Parent = StatusBar1;

or wherever you want it displayed.

//Damon

Other Threads