You are not logged in. You can browse in the PowerBASIC Community, but you must click Login (top right) before you can post. If this is your first visit, check out the FAQ or Sign Up.
A well placed SetForeGroundWindow hdlg did the trick.
Code:
DO
DIALOG DOEVENTS TO CNT&
LOOP WHILE CNT& > 1
SetForeGroundWindow hdlg
IF (GetKeyState(%VK_RETURN) AND &H8000) THEN
WHILE GetMessage(Msg,hdlg,0,0)
IF msg.wparam = %VK_RETURN THEN EXIT
LOOP
END IF
Up till now the following has worked fine for specialized dialog's that I use as special purpose message boxes (so I can minimize etc). In at least one program it hangs the program where the same routine in other programs does not. Is the following the best way to strip the return key out of the keyboard buffer.
Code:
DO
DIALOG DOEVENTS TO CNT&
LOOP WHILE CNT& > 1
IF (GetKeyState(%VK_RETURN) AND &H8000) THEN
WHILE GetMessage(Msg,%Null,0,0)
IF msg.wparam = %VK_RETURN THEN EXIT
LOOP
END IF
We process personal data about users of our site, through the use of cookies and other technologies, to deliver our services, and to analyze site activity. For additional details, refer to our Privacy Policy.
By clicking "I AGREE" below, you agree to our Privacy Policy and our personal data processing and cookie practices as described therein. You also acknowledge that this forum may be hosted outside your country and you consent to the collection, storage, and processing of your data in the country where this forum is hosted.
Leave a comment: