Search found 1508 matches

by BruceSteers
Friday 22nd March 2024 4:35pm
Forum: Beginners
Topic: Fileview sort the elements by date
Replies: 5
Views: 292

Re: Fileview sort the elements by date

Or a command something like this... Public Sub SortFileViewByDate() Dim p As Panel = FileView1.Children[0] Dim iv As IconView = p.Children[0] Dim aKeys As New String[] Dim aDates As New Date[] ' make an array of the keys and an array of the modified dates... For Each sKey As String In iv.Keys aDates...
by BruceSteers
Friday 22nd March 2024 4:05pm
Forum: Beginners
Topic: Fileview sort the elements by date
Replies: 5
Views: 292

Re: Fileview sort the elements by date

It can be done with a little trickery.
You can hack the IconView inside the FileView

Remember this conversation...
https://forum.gambas.one/viewtopic.php?t=1532

You could set the IconView "Sorted" property to false and do it yourself.
by BruceSteers
Thursday 21st March 2024 1:13pm
Forum: General
Topic: How to combine two images
Replies: 5
Views: 238

Re: How to combine two images

Whatever works for you dude. does it have to be an image that you read/overlay? you could just draw it Dim p As Picture = New Picture(300, 300) p.Image.Fill(Color.White) ' fill white background Paint.Begin(p) ' draw a blue square with 10 px margin Paint.FillRect(10, 10, 280, 280, Color.blue) ' draw ...
by BruceSteers
Thursday 21st March 2024 11:48am
Forum: General
Topic: How to combine two images
Replies: 5
Views: 238

Re: How to combine two images

please describe "merge"

should they be next to each other or one on top of the other.

do they have transparent backgrounds?

Can you not just use Paint.classs to paint one image on the other?


Paint.Begin(hSquarePic)
Paint.DrawPicture(hRoundPic, 0, 0, Paint.W, Paint.H)
Paint.End

by BruceSteers
Wednesday 20th March 2024 12:49pm
Forum: General
Topic: Advise on how to read the following json file
Replies: 1
Views: 145

Re: Advise on how to read the following json file

transactionid is an array of string[] and it is only one string , it is not a collection or an array so [1] does not exist it is "Invalid value: 5be3f476-f73e-4968-9ea5-721f622eaca2" EDIT: Also "messages" is a collection so you are inspecting it wrong. You want something more lik...
by BruceSteers
Tuesday 19th March 2024 9:11pm
Forum: Beginners
Topic: Gambus Project Backup to USB
Replies: 2
Views: 223

Re: Gambus Project Backup to USB

To put it simply,, Ctrl-H :) before dragging a folder press Ctrl-H to "Show all files" Some desktops do not copy hidden files/folders in a drag event unless they are visible. also try Ctrl-H to show all files in the copied folder to see if it really is empty. Or use the IDE menus... File/S...
by BruceSteers
Monday 18th March 2024 8:45pm
Forum: General
Topic: Gambas Closing - Error Message
Replies: 8
Views: 427

Re: Gambas Closing - Error Message

first, thank you BruceSteers for your help, we very much appreciate it. You help got us 95 percent success The dependency list was long. We downloaded the files and restarted the computer but the same result happened. but with the env GB_JIT_ENABLED=0 gambas3 the gambas3 ide started up immediately ...
by BruceSteers
Monday 18th March 2024 2:16am
Forum: General
Topic: Gambas Closing - Error Message
Replies: 8
Views: 427

Re: Gambas Closing - Error Message

hmm, most likely a system problem then if gambas is fresh install you could try making sure all dependencies are installed. I only know of the dependency list that is required to compile gambas... sudo apt-get update && sudo apt-get install -y build-essential git g++ automake autoconf libtoo...
by BruceSteers
Sunday 17th March 2024 7:28pm
Forum: General
Topic: Gambas Closing - Error Message
Replies: 8
Views: 427

Re: Gambas Closing - Error Message

Ps change the url of the bugtracker link form http:// to https:// then it might work.

https://gambaswiki.org/bugtracker

But it seems more like a bug in your system or your old gambas setup , not a bug in gambas itself.
by BruceSteers
Sunday 17th March 2024 7:26pm
Forum: General
Topic: Gambas Closing - Error Message
Replies: 8
Views: 427

Re: Gambas Closing - Error Message

Gambas 19.4 ?? currently latest version is 3.17.1 is it gambas2 ? Maybe fully uninstall and reinstall gambas. After uninstall do the following in a terminal.. sudo rm /usr/bin/gambas* sudo rm /usr/bin/gb*3 sudo rm $HOME/.config/gambas3/gambas* # kill gambas ide settings to refresh sudo rm -rf /usr/l...