Re: Windows events
- Posted by CChris <christian.cuvier at agriculture.gouv.fr> May 13, 2007
- 622 views
DB James wrote: > > Hi, > > Anyone know where I can get more information of the events associated with > Windows. I do have the old Win32.hlp file, but I can't find what I need (so > far). > > I am having some trouble learning to program in Windows using Judith's IDE > and win32lib because I'm often not sure the order and conditions of > particular events, such as Open or Activate, occur. I find myself sticking > code in the wrong event handlers and zipping off into limbo... > > --Quark Isn't the commented list in the Wiki, probably in the win32lib category, page "Event-droven programming", providing some good hints already? As for the w32HOpen event, it fires when the window opens, but _before_ it is shown. w32HActivate fires when the window is on display, right before returning from openWindow(), which WinMain() calls. CChris