Hi Monks,
I've created a frame inside my main window using the following statement.
$frame = $mw -> Frame ( -borderwidth => 2, -relief => 'groove' );
$frame -> pack ( -side => 'right', -fill => 'both' );
How can I allow the user to modify the size of the frame. For e.g When the user brings the cursor near the edge of the frame, it should change into a double side pointer and allow the user to drag and change the size of the frame.
Thanks