Search found 139 matches

by sadams54
Thursday 16th March 2023 6:41pm
Forum: Lounge
Topic: fedora repo
Replies: 4
Views: 4960

Re: fedora repo

yep that is what I am looking at. Getting on things like rpm fusion etc. but the directions lost me after the 2nd 20 step reference to another guide to follow and something about the sacrifice of a live chicken by the light of the full moon at midnight. My own repo is no different than what I do. I ...
by sadams54
Wednesday 15th March 2023 6:23pm
Forum: Lounge
Topic: fedora repo
Replies: 4
Views: 4960

Re: fedora repo

I love that you have the same sense of humor. The links only tell me how to add repos not how to put our gambas software into a repo for public download. Sort of not quite on target.

But thanks for the advise I will get more chickens to sacrifice, worst case is a lot of eggs or a great bbq.
by sadams54
Tuesday 14th March 2023 11:53pm
Forum: Lounge
Topic: fedora repo
Replies: 4
Views: 4960

fedora repo

I work mostly in Fedora so I am wondering if anybody can help with getting some of my projects added to a repo. I have looked it up and I think I stopped at the point where I have to sacrifice a live chicken at midnight during a full moon. I am looking for something simple. If your process takes mor...
by sadams54
Thursday 9th March 2023 9:09pm
Forum: General
Topic: color button to rgb
Replies: 5
Views: 1304

Re: color button to rgb

thank you. You put me on the right track. I modified the code you gave so it returns a string "RRGGBB" padded properly and seems to be giving me dead on color to pass on. Public Function GetRGB(ArgColor As Integer) As String Dim r, g, b As Integer Dim RGB As String r = Shr(ArgColor, 16) An...
by sadams54
Thursday 9th March 2023 12:17am
Forum: General
Topic: color button to rgb
Replies: 5
Views: 1304

color button to rgb

I need to convert the value of the color button to a RGB value and I am unable to find how to do this. It means I am overthinking again. I just need to convert the color button value to the proper RGB value. I tried converting to hex but that does not give good results on custom colors. Can somebody...
by sadams54
Wednesday 8th March 2023 7:19pm
Forum: General
Topic: A Gambas Compiler
Replies: 8
Views: 2185

Re: A Gambas Compiler

actually I do not do the dev at all. I stick to the stable released in the repo from fedora. Yes the problems are not common but when they happen they tend to be crippling to my production environment. Please never take this as criticism as I think the Gambas project is amazing and has my total supp...
by sadams54
Tuesday 7th March 2023 11:18pm
Forum: General
Topic: A Gambas Compiler
Replies: 8
Views: 2185

Re: A Gambas Compiler

Let hope that perhaps our geniuses that created Gambas can make it simple to do. Perhaps a single mouse click on a menu item in the IDE and maybe a few options to check and poof we have an app image. I would love this if for no other reason than that nearly every time a new Gambas version is release...
by sadams54
Tuesday 7th March 2023 7:13pm
Forum: General
Topic: A Gambas Compiler
Replies: 8
Views: 2185

Re: A Gambas Compiler

I thought about the app image idea. I am not up to date on it and really have no clue how to do something like that. If we can't get a compiler that is another option that maybe would be good addition to Gambas. A menu option to create an app image.
by sadams54
Tuesday 7th March 2023 1:45am
Forum: General
Topic: A Gambas Compiler
Replies: 8
Views: 2185

A Gambas Compiler

I was wondering if Gambas plans to have a real compiler at any time. What I mean by that is currently Gambas uses an interpreter. You need to have a runtime for gambas installed in order to make the programs work. If the interpreter is changed the update will change how your program runs even if you...
by sadams54
Tuesday 7th March 2023 1:08am
Forum: General
Topic: Using ip6 instead of ip4 with Socket
Replies: 4
Views: 1256

Re: Using ip6 instead of ip4 with Socket

ipv4 and v6 are very different if you have not noticed just looking at the addresses. I would bet that v6 is not supported and the reason is that v4 is not going away and will likely outlive all of us. I would bet that if you write for v4 you will not have any issues. v6 is usually something handled...