Search found 96 matches

by Got2BeFree
Friday 17th January 2020 10:46pm
Forum: Lounge
Topic: Gambas on Windows
Replies: 17
Views: 41471

Re: Gambas on Windows

How'd you manage that? Were you using a VM?
by Got2BeFree
Thursday 9th January 2020 3:31am
Forum: Lounge
Topic: Packaging Gambas for Debian
Replies: 7
Views: 11007

Re: Packaging Gambas for Debian

Thanks, guys, I actually forgot I had started this thread! I've been reading through all the info, but I still have a lot to digest. Hopefully this weekend I'll have time to sit and get to a point I can actually create a .deb package. The info you guys posted has greatly helped in filling in some of...
by Got2BeFree
Thursday 9th January 2020 12:58am
Forum: Project showcase
Topic: Fruit machine
Replies: 5
Views: 8528

Re: Fruit machine

Stupid one-arm bandit stole all my credits! All 5 times I played! :lol: Fun game, thanks! On line 67 in FMain I added a Wait 0.5 so the "handle" sound meshed better with the reels starting to spin. It ran about the same speed on all three of my systems. Intel Xeon xeon.png Intel Core i3 i3...
by Got2BeFree
Thursday 2nd January 2020 10:28pm
Forum: Project showcase
Topic: Mounted Drives
Replies: 3
Views: 6119

Re: Mounted Drives

Same as before, didn't find the /dev/md[x] Raid partitions. Here's the output of df if it helps any. $ df -aTh Filesystem Type Size Used Avail Use% Mounted on sysfs sysfs 0 0 0 - /sys proc proc 0 0 0 - /proc udev devtmpfs 7.8G 0 7.8G 0% /dev devpts devpts 0 0 0 - /dev/pts tmpfs tmpfs 1.6G 58M 1.6G 4...
by Got2BeFree
Thursday 2nd January 2020 2:07am
Forum: Project showcase
Topic: NASA APOD
Replies: 10
Views: 13823

Re: NASA APOD

They say a picture is worth a thousand words... Here's three-thousand words... :lol: apod_basics.png apod_more.png apod_license.png Let's see if you can find the fourth problem common with all three images. Here's a hint... It's not what's written. Here's another hint... They say size matters. ;) Th...
by Got2BeFree
Thursday 2nd January 2020 1:41am
Forum: Project showcase
Topic: Mounted Drives
Replies: 3
Views: 6119

Re: Mounted Drives

The code as is wasn't able to find my Raid partitions. Raid partitions show up as /dev/md[x]. One small change to line 79 allowed your code to find all my partitions, including the Raid partitions. If sDrives[siLoop] Begins "/dev/s" Then changed to: If sDrives[siLoop] Begins "/dev/&qu...
by Got2BeFree
Sunday 29th December 2019 6:04pm
Forum: Project showcase
Topic: NASA APOD
Replies: 10
Views: 13823

Re: NASA APOD

I had no issues when clicking the "get your key" button. One issue I did run into though is the cache. Because I run a small /Home partition, most everything goes to a large "storage" partition and I then create links in /Home to those. When I seen where the cache was building up...
by Got2BeFree
Monday 16th December 2019 10:59pm
Forum: Lounge
Topic: Packaging Gambas for Debian
Replies: 7
Views: 11007

Packaging Gambas for Debian

The one thing I miss about using OpenSuse was having new Gambas releases within a day or two available for updating through the package manager. Now, being on Debian, I have to wait for many weeks or even months before I see Gambas appear in the package manager. Back when I was on RPM based flavors ...
by Got2BeFree
Saturday 14th December 2019 5:50pm
Forum: General
Topic: Gambas sqlite
Replies: 7
Views: 9585

Re: Gambas sqlite

I haven't created a mySQL db in about 10 years since SQLite is all I've needed for my apps. If you think of ".Host" as a " location " and not just as a path, machine name, or IP address, and use a variable to hold that " location ", you should be able to craft your db a...
by Got2BeFree
Thursday 12th December 2019 3:34am
Forum: General
Topic: How to display a round object?
Replies: 15
Views: 16572

Re: How to display a round object?

Interesting. I like playing with old equipment, even if it's just a simulation. 2 issues... Screenshot_20191211_221655.png 1. Good thing I use dual monitors! ;) When FMain's Form Resizable property is set to "False", as you can see I need 2 monitors to hold the app's window. When the prope...