#Create the bottom Frame my $bottom = $configDialog->Frame; my $filenameFrame = $bottom->Frame; my $clientnameFrame = $bottom->Frame; my $priorityFrame = $bottom->Frame; #Create and pack the label $filenameFrame->Label(-text=>'Enter a Filename:')->pack(); my $nameBox = $filenameFrame->Text(-width=>'20', -height=>'1')->pack(); $filenameFrame->pack(-side=>'left'); $priorityFrame->Label(-text=>"Priority")->pack(); $priorityFrame->RadioButton(-text=>"High", -variable=>\$priority)->pack(); $priorityFrame->RadioButton(-text=>"Medium", -variable=>\$priority)->pack(); $priorityFrame->RadioButton(-text=>"Low", -variable=>\$priority)->pack(); $priorityFrame->pack(); $clientnameFrame->Label(-text=>'Choose a Client')->pack(); my $clientBox = $clientnameFrame->Scrolled('Listbox',-height=>'3', -width=>'7', -scrollbars=>'e')->pack(); $clientnameFrame->pack(-side=>'right'); $bottom->pack();