Re: win32lib event handlers needed
- Posted by Larry Miller <larrymiller at sasktel.net> Nov 24, 2004
- 535 views
If I understand you correctly, the functionality of these events are already incorporated in the w32HResize event. The first element of the params sequence indicates the type of resize operation that has occured. >From the Win32Lib docs: parms = { integer style, integer x, integer y} The style is one of the following: SIZE_RESTORED: Window was restored SIZE_MINIMIZED: Window was minimized SIZE_MAXIMIZED: Window was maximized The x and y parameters are the new size of the id. I have used all of these and they work well Larry