Search found 4 matches

by davey
Fri Aug 21, 2015 6:21 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: _MOUSEINPUT problem
Replies: 3
Views: 9001

Re: _MOUSEINPUT problem

Thank you! That (plus the Wiki) helped immensely. I have changed my code to the following and it works perfectly (even if the mouse is moved around): DO 'main program loop DO WHILE _MOUSEINPUT 'check mouse status b1 = _MOUSEBUTTON(1) LOOP DO WHILE b1 'check for button release i = _MOUSEINPUT b1 = _M...
by davey
Thu Aug 20, 2015 5:07 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: _MOUSEINPUT problem
Replies: 3
Views: 9001

_MOUSEINPUT problem

I am having trouble reading the mouse inputs. It seems that after there has been a mouse click, the mouse has to be read (_MOUSEINPUT) a number of times before it will know that there is no more input i.e. before it will go back to zero. This is most evident if the mouse is moved - it may have to be...
by davey
Wed Aug 05, 2015 10:14 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: qb64.exe - automatically open to full screen
Replies: 2
Views: 8487

qb64.exe - automatically open to full screen

Is there an equivalent of a SETUP or .INI file where I can set qb64.exe to open in full-screen? Right now it opens in a window with the right side off the screen, so I have to move the window then Maximize it. I know you can use ALT-ENTER, but there must be a way to do it automatically. And ALT-ENTE...