Re: inputbox
- Posted by Matthew Lewis <MatthewL at KAPCOUSA.COM> Jul 27, 2000
- 407 views
<snip> > are you saying that messages for all windows an application > has go thru that > loop? i thought there were messages just for main application window. Actually, messages go to and from all controls. Win32lib has two procedures that handle windows: WndProc(), which handles windows, and SubProc(), which handles controls. These two functions are called by windows itself, rather than from your program. An event loop is used in WinMain() to deal with messages. This is true in Eu or C or whatever (although it might be implemented differently in other languages). Matt