Re: inputbox
- Posted by =?iso-8859-2?B?qWtvZGE=?= <tone.skoda at SIOL.NET> Jul 26, 2000
- 414 views
> -- message loop > while c_func( xGetMessage, { msg, NULL, 0, 0 } ) and not > EventLoopExit[ele] do if msg.message=WM_COMMAND then .... end if > c_proc( xTranslateMessage, { msg } ) > c_proc( xDispatchMessage, { msg } ) > end while why can't we process messages directly withing this loop? then it would be similar to dos programming, where you handle user actions in one big loop. WndProc just complicates things up. why is this in windows that way?