by Andrew >> Tue, 21 Jun 2005 0:41:40 GMT
I have a non MDI child window that is skinned and uses the standard Window maximise button.
I'd like to be able to override the default maximise behaviour, here's an example of the maximise event I'd use if such an event existed:
windowMaximised () updating;
vars
iLeft, iTop, iWidth, iHeight : Integer;begin
getDeskTopWorkArea(iLeft, iTop, iWidth, iHeight);
self.windowState = WindowState_Normal
self.move (0, 50, iWidth, iHeight);
end
Any ideas?