QB64 Phoenix Edition
Thank you program for Steve - Printable Version

+- QB64 Phoenix Edition (https://qb64phoenix.com/forum)
+-- Forum: QB64 Rising (https://qb64phoenix.com/forum/forumdisplay.php?fid=1)
+--- Forum: Code and Stuff (https://qb64phoenix.com/forum/forumdisplay.php?fid=3)
+---- Forum: Programs (https://qb64phoenix.com/forum/forumdisplay.php?fid=7)
+---- Thread: Thank you program for Steve (/showthread.php?tid=349)

Pages: 1 2


Thank you program for Steve - Dav - 05-05-2022

Attached is a QB64 program just to say thanks to Steve for quickly putting up this QB64 forum for us all.

Smile

- Dav


.bas   thanks.bas (Size: 44.81 KB / Downloads: 155)


RE: Thank you program for Steve - SierraKen - 05-05-2022

Amazing Dav. You might want to put your decoder program and the code to use it in other programs in the Utilities section. Good job.


RE: Thank you program for Steve - bplus - 05-06-2022

Yes, pretty cool!


RE: Thank you program for Steve - Pete - 05-06-2022

Wait. Where's my THANK YOU program? Steve may have put up the forum... but I have to put up with STEVE!

Waiting for Mark to write me...

SCREEN 0
PRINT "Thank you."
END

------------------------------

I know, I know, lines 1 and 3 aren't even necessary. Sigh/

Pete


RE: Thank you program for Steve - SierraKen - 05-06-2022

(05-06-2022, 12:23 AM)Pete Wrote: Wait. Where's my THANK YOU program? Steve may have put up the forum... but I have to put up with STEVE!

Waiting for Mark to write me...

SCREEN 0
PRINT "Thank you."
END

------------------------------

I know, I know, lines 1 and 3 aren't even necessary. Sigh/

Pete

Like the old days:

10 PRINT "THANKS STEVE!!!!!!!!!!"
20 GOTO 10


RE: Thank you program for Steve - bplus - 05-06-2022

(05-06-2022, 12:23 AM)Pete Wrote: Wait. Where's my THANK YOU program? Steve may have put up the forum... but I have to put up with STEVE!

Waiting for Mark to write me...

SCREEN 0
PRINT "Thank you."
END

------------------------------

I know, I know, lines 1 and 3 aren't even necessary. Sigh/

Pete

Man I give your avatar state of the art modern weaponry
https://qb64phoenix.com/forum/showthread.php?tid=204

Where's my thank you?


RE: Thank you program for Steve - Pete - 05-06-2022

Alright, varmint, ya gots yur thumbs up rattin fur that one!

- Sam


RE: Thank you program for Steve - bplus - 05-06-2022

Well thank you kindly!

And thanks again to Steve and all the folks who helped!


RE: Thank you program for Steve - SMcNeill - 05-06-2022

Code: (Select All)
flamehw = _LoadImage("fire.png", 33)
f = _LoadFont("OLDENGL.TTF", 180)

Screen _NewImage(1024, 720, 32)
_Font f
_DisplayOrder _Hardware , _Software
Color 0
_DontBlend
Cls
Do
    x = Rnd * 100: y = Rnd * 100 + 175
    _PutImage (x - 50, y - 50), flamehw
    _PrintString (512 - _PrintWidth("My") / 2, 150), "My"
    _PrintString (512 - _PrintWidth("Pleasure!") / 2, 350), "Pleasure!"
    _Display
    _Limit 15
Loop Until _KeyHit
Sleep
System



RE: Thank you program for Steve - Pete - 05-06-2022

It's about time you posted a welcome program you lazy son of a batch!

Pete Big Grin