Thank you! I just put all the files on top of v. 1.3 and just to check it it works fine so far with the $NOPREFIX which is the first thing I checked. But I clicked Help and About and it still says v. 1.3. I wonder if it's because I overlapped the older files? I did it this way so I won't have to try and move all the programs I've made.
Also, for some reason it won't let me click About more than once when the window is maximized. I have to minimize it first to click it again. This is the 64 bit Windows version.
Downloaded, installed and ran my main project on it. Any other enhancements in this one? It seemed to handle a 3D graphic rotation routine smoother than 1.3 did.
Looking forward to $NOPREFIX, that's always been a bit of a pain.
Nothing changed, I just didn't add it because I didn't understand it. Care to elaborate? 😁
All clear now. Please check it: http://www.qb64.org/wiki/INFLATE$ (http://www.qb64.org/wiki/INFLATE$)
Is that with $NOPREFIX on?
All clear now. Please check it: http://www.qb64.org/wiki/INFLATE$ (http://www.qb64.org/wiki/INFLATE$)
Guys, is this mainly for shrinking text size before storing it in a file?
Pete
I like to blink the leds! However, this doesn't blink the status lights. I did download 1.4 and installed
it to a fresh folder. Says it's 1.4 under Help too. Using _TOGGLE instead of ON or OFF didn't work either.
I'm using Windows XP on a 64 bit machine, with 32 bit versions of QB64.
$COLOR:0
COLOR BrightWhite, Red
PRINT "Bright white on red."
Where can I found the list of the constants colors, like here "Red" ou "Brightwhite" ?
Maybe the IDE should have flagged that as an error, or at least warned me.
It's funny that it didn't, as that's the only reason that I caught it.
_FULLSCREEN
FOR i = 1 TO 10
a = a + 1
NEXT i
PRINT a
FOR i = 1 TO 20
b = b + 1
NEXT i
PRINT b
END
Does replacing END with SYSTEM make it go away?
Maybe related to the graphics driver. Many and I do mean many, video boards lost support when win 10 came out. And to top it off, video board mfg's stopped support for some lines after Win 7. So when win 8, 8.1 came out, they said: "If it works o.k., if it don't no support"
Of course, you can work around this by typing:
_FULLSCREEN _OFF: END
or
_FULLSCREEN _OFF: SYSTEM
But you didn't have to do it before! ;-)
Maybe - what is your monitor resolution? If it's 4K, it's possible no one has ever tested it. Or, there's another thing. Some LCD monitors simply do not display other than their resolution. Try to set a valid resolution for the monitor with _NEWIMAGE, then _FULLSCREEN. Whether the problem persists or it resolves the problem.
I’ve tried to replicate the issue but haven’t had any luck with it with my system. Whatever it is, it seems to be very machine specific.
I'm trying to throw this bug. No success yet. When you print those numeric variables, do you see them?
So I really don't know where the problem is. This program works in QB64 in all versions, including 1.4.
DO
x = _CONSOLEINPUT
IF x = 1 THEN 'don't update for mouse input
c = _CINP
PRINT c;
END IF
LOOP UNTIL c = 1
There has been such a bug since version 1.3: When I run a program and when it stops, it doesn't always go back to the IDE. There will be a black screen. It is only when I move the mouse cursor down and click on it that the IDE opens.After hard work, I finally solved the problem that caused the "black window" after the "END" or "SYSTEM" command!
My OS is Windows 7. ps. Version 1.2 works fine.
You are probably aware of this already, but I thought I would just mention it to be on the safe side:
I don't see help in the program yet (as of the Jan 29th dev build) for _CINP or for _CONSOLEINPUT
EDIT: After googling this, I gather it is associated with OpenGL, which I am NOT using in anything I do.