Hi efgee,
The message loop may need attention. You had problems with another O2 program and found that fixing the WinMain message loop resolved the problem on your system.
If an error is returned by GetMessage then this loop will not attempt to pass the Message back into Windows for further processing.
Charles
sys bRet
'
do while bRet := GetMessage (&wm, 0, 0, 0)
if bRet = -1 then
'show an error message
else
TranslateMessage &wm
DispatchMessage &wm
end if
wend