QB64 Phoenix Edition v3.3.0 Released!
#51
Condensation is a known problem. The solution is: you drill small holes in both panes of glass, offset of course so that the wind doesn't blow through, and then there is no more condensation between the panes of glass. - Nothing to thank for!  Tongue
Reply
#52
If I wanted holes in my windows, I'd upgrade to Windows 11.

You know the funniest, and shortest slogan that company ever came up with was, "Windows, imagine a world without walls." The immediate meme response was, "If you don't have walls, who the hell needs Windows?"

Pete Big Grin
Reply
#53
(10-19-2022, 10:14 PM)Pete Wrote: If I wanted holes in my windows, I'd upgrade to Windows 11.

You know the funniest, and shortest slogan that company ever came up with was, "Windows, imagine a world without walls." The immediate meme response was, "If you don't have walls, who the hell needs Windows?"

Pete Big Grin

Hm, nice But I think one of MS's best slogans was  Big Grin :

[Image: Rosanna.jpg]
Reply
#54
Hmm, The C/C++ language comes to mind. How is that coded again...


fprintf( stdout, "hello world\n" );


Pete
Reply
#55
Is it true you lose the list of recent files if you change the Compiler options? Unexpected! If so, probably not only this version. If not, my apologies I screwed up something else and lost that list.
b = b + ...
Reply
#56
(10-21-2022, 09:11 PM)bplus Wrote: Is it true you lose the list of recent files if you change the Compiler options? Unexpected! If so, probably not only this version. If not, my apologies I screwed up something else and lost that list.

Just tested and didn't lose the list of recent files when I changed options.

Any chance you accidentally hit the Clear Recent option with an errant mouse click sometime?
Reply
#57
(10-21-2022, 09:32 PM)SMcNeill Wrote:
(10-21-2022, 09:11 PM)bplus Wrote: Is it true you lose the list of recent files if you change the Compiler options? Unexpected! If so, probably not only this version. If not, my apologies I screwed up something else and lost that list.

Just tested and didn't lose the list of recent files when I changed options.

Any chance you accidentally hit the Clear Recent option with an errant mouse click sometime?

Yes definite possibility, after all the list disappeared. 

Wait, dah, ... I switched to v3.3 I had downloaded (twice) but had not done all the things I have to do to get a new version up and running.
I was fooling around with this code and dismayed by the jiggly and blinky ball animation. So I thought I'd try changing compiler options THEN I thought I'd try the new v3.3 after knocking out some of all the processes MS was running CPU 40% sound right?

Is this I nice steady solid animation?
Code: (Select All)
Option _Explicit
_Title "Standard Reflection in a Rectangle Container" ' b+ 2022-10-21
' A quick demo of the wrong way I was doing bouncing balls and circles on rectangular borders
' Air Hockey, Ping Pong, Break Out games

Screen _NewImage(800, 600, 32)
_ScreenMove 250, 50
Randomize Timer
Dim Top, Left, Bottom, Right ' borders for rectangle
Top = 10: Bottom = _Height - 10: Left = 10: Right = _Width - 10
Dim x, y, r, a, speed, dx, dy ' for ball x, y position moving with heading a and speed so dx, dy with radius r
Dim i
restart:
x = _Width / 2: y = _Height / 2: speed = 5
r = 15 ' make ball radius (br) at least 2* speed
a = Rnd * _Pi(2) ' setup up ball in middle of screen/container random heading = ba (ball angle)
dx = speed * Cos(a): dy = speed * Sin(a)
Color &HFFFFFFF, &HFF008844
Do
    Cls
    Line (Left, Top)-(Right, Bottom), &HFF000000, BF
    For i = 0 To r Step .25
        Circle (x, y), i, &HFFFFFFFF
    Next
    x = x + dx ' test x, y is new ball position if dont run into wall
    If x < Left + r Then x = Left + r: dx = -dx
    If x > Right - r Then x = Right - r: dx = -dx
    y = y + dy
    If y < Top + r Then y = Top + r: dy = -dy
    If y > Bottom - r Then y = Bottom - r: dy = -dy
    _Display
    _Limit 60
Loop Until _KeyDown(27) Or _KeyDown(32)
If _KeyDown(32) Then GoTo restart
b = b + ...
Reply
#58
OK I checked, the Recent Files list is gone from v3.2 so it did happen when I had older version loaded and was trying compiler options..
b = b + ...
Reply
#59
The recent list isn't gone; you just haven't saved anything since downloading the v3.3, so it hasn't added anything to it yet. Smile
Reply
#60
No, neither versions had the Recent Files lists, v3.3 just loaded is to be expected.

That's OK, it's not like having to set up main disk with fresh Windows 4 times in a couple of months.
b = b + ...
Reply




Users browsing this thread: 20 Guest(s)