Search found 310 matches

by vuott
Sunday 23rd March 2025 2:45pm
Forum: General
Topic: Label Control to JPEG
Replies: 4
Views: 1125

Re: Label Control to JPEG

To BruceSteer's suggestion I would also add this:

https://www.gambas-it.org/wiki/index.ph ... ontenitore
by vuott
Sunday 23rd March 2025 12:59pm
Forum: General
Topic: GridView Row Merge
Replies: 2
Views: 306

Re: GridView Row Merge

by vuott
Friday 14th February 2025 6:52pm
Forum: General
Topic: Slider issue
Replies: 3
Views: 12637

Re: Slider issue

Yes, I confirm.
by vuott
Wednesday 11th December 2024 1:06pm
Forum: Beginners
Topic: write an array to file records / read file records into an array
Replies: 9
Views: 13151

Re: write an array to file records / read file records into an array

mandarin wrote: Wednesday 11th December 2024 8:55am How can I write an array into a file ......
...and then read back the file records into that array?
Hello,
did you try ".Write()" and ".Read()" Methods of array ?

e.g.:
https://gambaswiki.org/wiki/comp/gb/byte[]/read
https://gambaswiki.org/wiki/comp/gb/byte[]/write
by vuott
Tuesday 26th November 2024 10:03am
Forum: General
Topic: How to stop multiple instances
Replies: 5
Views: 7085

Re: How to stop multiple instances

I don't know if :? this page can help you:
https://www.gambas-it.org/wiki/index.ph ... A0_avviato
by vuott
Sunday 3rd November 2024 11:17pm
Forum: General
Topic: Mouseover Event ?
Replies: 2
Views: 2591

Re: Mouseover Event ?

by vuott
Saturday 2nd November 2024 12:55am
Forum: Beginners
Topic: Variable scope
Replies: 2
Views: 7229

Re: Variable scope

It is always a good rule to show the part of code that produces the error. ...when I try to run it I keep getting the error "Unknown identifier: hButton2 (FMain.class:34) within the event handler. I assume this means that hButton2 is out of scope within sub hButton1_Click... Uhmmm... did you fo...
by vuott
Friday 1st November 2024 8:01pm
Forum: Beginners
Topic: IDE Menu bar
Replies: 1
Views: 5335

Re: IDE Menu bar

Ctrl+Alt+M
by vuott
Friday 18th October 2024 6:28pm
Forum: General
Topic: Gambas request password before running command
Replies: 17
Views: 15986

Re: Gambas request password before running command

:? I understood that theyikes did not want to use “sudo”:
theyikes wrote: Wednesday 16th October 2024 5:35pm Ok i know i can circumvent the issue by using sudo -E filename.gambas. but I'd love to know if it's possible to do it where it prompts me for a password....... if that makes sense.
by vuott
Thursday 17th October 2024 9:34pm
Forum: General
Topic: Gambas request password before running command
Replies: 17
Views: 15986

Re: Gambas request password before running command

Sadly it doesn't work like that. they would again be 2 separate processes, the second not being authorized. Certainly, but it also depends on what is to be done. For example, if I need to change the permissions of a file-device, my solution is effective. Public Sub Button1_Click() Desktop.RunAsRoot...