Hi Babyboomerboy,
QB45 (QuickBasic) won't run on Windows 7, 8, 0r 10. The last Windows that it was compatible with was Windows XP, but only the 32 bit version. The GOOD NEWS is that QB64 is nearly 99%+ QB45 compatible. Just go to the download page, download the latest version, and copy and past a QB45 program into the QB64 IDE. Let us know if you get any error messages, as most are very simple to correct.
QB64 runs great in Windows 10. It is so much faster than QB45. In fact, one thing you may encounter is older programs running too fast! In QB64, just use the _DELAY statement to slow any loops down that are too fast. _DELAY .02, _DELAY 1, etc. the numbers are in seconds, and fractions like .02 and lower are accepted. Also, LOOPS can run the CPU too high, so use _LIMIT 30 (Limit to 30 frames per second) to conserve CPU usage in all your DO/LOOP routines.
Welcome to the forum!
Pete
Oh, I almost forgot. You might want to download DOSBox, too. That will allow you to run QB45 programs in Windows 10, but the it cannot use SHELL statements and has a few other restrictions. It's still nice to have on hand, just if you want to see how an older program looked and ran in the old days. BTW, I'm in my 60's, too.