Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Perl/k - force MainWindow unsizable ? 1

Status
Not open for further replies.

MoshiachNow

IS-IT--Management
Feb 6, 2002
1,851
IL
HI,

How do I force MainWindow unsizable - means user will not be able to size it ?
thanks

Long live king Moshiach !
 
Code:
my $mw = MainWindow->new;
$mw->title("My window"); 
$mw->geometry("440x320");
$mw->minsize(440,320);
$mw->maxsize(440,320);

MainLoop;

dmazzini
GSM/UMTS System and Telecomm Consultant

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top