I tried to create a box on an already working program. just underneath an existing box, followed similar syntax. for some reason when ever I added the program stops to work.
is there any one who can help me on this.
//this is a working program segment
/$frame1 = &new GtkFrame('A simple small frame');/
/$window->add($frame1);/
/ Creates the Vertical box for putting things in. /
$box1 = &new GtkVBox();
$frame->add($box1);
$box1->show();
//up to here
//I have added this to the window
/$box3 = &new GtkVBox();/
/$frame->add($box3);/
/$box3->show();/
//up to here but it is not working
do you guys think the use of an arrow -> might matter. I am in tatters pls.
I need any sort of help
Many thx.