Search found 1547 matches

by BruceSteers
Thursday 11th April 2024 8:32am
Forum: General
Topic: Suggestions for checking that all array values are unique
Replies: 7
Views: 282

Re: Suggestions for checking that all array values are unique

If you want the check to fail on the first detection of a duplicate, it may be better to do the check with a loop/repeat rather than a For/next so that it drops as soon as it fails rather than running through the entire array. It may shave off some more time in the process. It does exit on first de...
by BruceSteers
Wednesday 10th April 2024 9:41pm
Forum: General
Topic: [solved] can not use gambas repoes to get update
Replies: 15
Views: 537

Re: can not use gambas repoes to get update

Autotools method is easy peasy now.
Thanks to the .gitlab-ci.yml file.

Just download the source and uninstall the apt gambas version then run the autotools install

http://138.68.116.47/cgi-bin/WebGambasUpgrade.gambas

Shimples 😊
by BruceSteers
Wednesday 10th April 2024 7:54pm
Forum: General
Topic: [solved] can not use gambas repoes to get update
Replies: 15
Views: 537

Re: can not use gambas repoes to get update

Although you have a signature error there.

Did you use sudo add-apt-repository ppa:gambas-team/gambas3 to add the repository as you may not have the gpg keys
by BruceSteers
Wednesday 10th April 2024 7:49pm
Forum: General
Topic: [solved] can not use gambas repoes to get update
Replies: 15
Views: 537

Re: can not use gambas repoes to get update

I tried it manually once, i downloaded all the packages that come from launchpad but none of them installed on debian.
by BruceSteers
Wednesday 10th April 2024 7:43pm
Forum: General
Topic: [solved] can not use gambas repoes to get update
Replies: 15
Views: 537

Re: can not use gambas repoes to get update

Problem is you added an ubuntu repo to debian.

PPA launchpad is for ubuntu only, it doesn't work for debian (dependency list does not work)

Debian needs the autotools installation method to upgrade.
by BruceSteers
Wednesday 10th April 2024 6:27pm
Forum: Project showcase
Topic: Blockski+ , like Klotski but with a board editor.
Replies: 45
Views: 8185

Re: Blockski+ , like Klotski but with a board editor.

Some more updates , currently on V 1.3.38 Blocks can now be flipped horizontally or vertically A new paint mode for Wall blocks PaintErase. if paint mode is set to Erase it does not draw the wall but it erases the map beneath it giving invisible edges. (see the attached snapshot that has large Erase...
by BruceSteers
Wednesday 10th April 2024 8:41am
Forum: General
Topic: Suggestions for checking that all array values are unique
Replies: 7
Views: 282

Re: Suggestions for checking that all array values are unique

Ta. I wasn't clear enough. I just need to check it not replace it. So have gone with Public Function CheckArrayUniqueness(aList as Integer[]) As Boolean Dim aNewList As New Integer[] For c As Integer = 0 To aList.Max If Not aNewList.Exist(aList[c]) Then aNewList.Add(aList[c]) Next Return aNewList.C...
by BruceSteers
Tuesday 9th April 2024 10:08pm
Forum: Beginners
Topic: Media Player
Replies: 7
Views: 351

Re: Media Player

I heard you the first time :D

(So I deleted the duplicate quoted post 😉 )
Why do you post your messages twice?
by BruceSteers
Tuesday 9th April 2024 5:59pm
Forum: General
Topic: Suggestions for checking that all array values are unique
Replies: 7
Views: 282

Re: Suggestions for checking that all array values are unique

Hi all. Looking for suggestions. My Integer[] must only contain unique values. I just can't think of a really good way that does not involve a lot of unnecessary statistical manipulations. tia b Off the top of my head I think just making a new list would be simplest.... Public sub Uniquify(aList as...
by BruceSteers
Monday 8th April 2024 7:14pm
Forum: General
Topic: Inquire firefox
Replies: 2
Views: 113

Re: Inquire firefox

I doubt it's possible. you'd need an API into firefox to get it's internal data like that. It does not seem to have one , DBus has an OpenURL method but that's about it. there's some extensions that might help but that'd be "installing something" maybe you could monitor the connection stat...