Re: [perl-win32-gui] Setting a window to no resize

2000-10-20 Thread Jonathan Southwick
Paul, Add the following option to your window constructor: -style = WS_SYSMENU | WS_NORESIZE, and that should do what you want. Jonathan - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, October 20, 2000 11:31 AM Subject: [perl-win32-gui] Setting a

Re: [perl-win32-gui] Setting a window to no resize

2000-10-20 Thread Jonathan Southwick
Paul, If you want to be able to minimize the window but not maximize the window then you can use: -style= WS_SIZEBOX | WS_SYSMENU | WS_MINIMIZEBOX, Jonathan - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, October 20, 2000 11:31 AM Subject:

Re: [perl-win32-gui] Setting a window to no resize

2000-10-20 Thread Jonathan Southwick
Paul, my bad!!! -style= WS_MINIMIZEBOX | WS_SYSMENU | WS_NORESIZE, is what you want ... the other will still resize ... but this one will allow you to minimize and not resize and gives you the ability to Close it as well. I hope this helps. Jonathan - Original Message -