Search found 1591 matches

by BruceSteers
Sunday 20th September 2020 1:53am
Forum: General
Topic: Problems Installing
Replies: 17
Views: 13477

Re: Problems Installing

There's lots of doc's books out there. If you've used microsoft visual basic or .net it's quite similar (but less complicated) Are you completely new to coding ? There's the gambas wiki, this is our online reference manual but has a lot of examples... http://gambaswiki.org/wiki a beginners guide... ...
by BruceSteers
Saturday 19th September 2020 11:02pm
Forum: Component
Topic: .Action property , any docs anywhere?
Replies: 4
Views: 4898

Re: .Action property , any docs anywhere?

Thanks folks :)
So it really is a linking feature for tying controls together.
Good to know, thank you all :)
by BruceSteers
Saturday 19th September 2020 10:56pm
Forum: General
Topic: Problems Installing
Replies: 17
Views: 13477

Re: Problems Installing

just click the Farm:// link , it loads the farm page , its a new incomplete feature, it does the same thing as clicking the "Software farm" tab. Give it a chance m8 , gambas is great , sorry you had a glitch installing there but you might find it worth it. You're up and running now , you'v...
by BruceSteers
Saturday 19th September 2020 10:33pm
Forum: General
Topic: Problems Installing
Replies: 17
Views: 13477

Re: Problems Installing

Sorry have you added the gambas-team ppa's or just using the standard ubuntu package? Edit . i did read the first post lol, that slipped my mind. It's possible the uibuntu verison and latest ppa vesion are conflicting. Try the following... From terminal first completely remove all gambas stuff type....
by BruceSteers
Saturday 19th September 2020 10:25pm
Forum: General
Topic: Problems Installing
Replies: 17
Views: 13477

Re: Problems Installing

If you have synaptic pakage manager i'd use that , type 'gambas' in the search field and see what's not selected.
this is a known issue i believe some gambas packages are missing when installed with ubuntu.
by BruceSteers
Saturday 19th September 2020 10:08pm
Forum: General
Topic: Problems Installing
Replies: 17
Views: 13477

Re: Problems Installing

have you tried running from terminal to see if any error messages are going to stdout?
from a terminal/shell just type gambas3
by BruceSteers
Saturday 19th September 2020 8:47pm
Forum: General
Topic: problem with SHELL
Replies: 8
Views: 6479

Re: problem with SHELL

ffprobe has some fancy text output formatting You could do it with redirecting the output in the command and reading in the file... (dont forget the 'Wait' arg or you might miss the output :)) Shell "ffprobe " & Quote(PathToAudioFile) & " 2>/tmp/ffoutput" Wait sVar = File...
by BruceSteers
Saturday 19th September 2020 12:36pm
Forum: Project showcase
Topic: MakeIcon.module
Replies: 1
Views: 21132

MakeIcon.module

Want your apps to make their own launcher? MakeIcon.module written by Bruce Steers Have your gambas application create it's own launcher icon as either a desktop launcher or a menu entry. Simply add (Import) the MakeIcon.module to your app then you can use the following command... # MakeIcon.MakeMe(...
by BruceSteers
Saturday 19th September 2020 11:42am
Forum: Component
Topic: .Action property , any docs anywhere?
Replies: 4
Views: 4898

.Action property , any docs anywhere?

Anyone know the correct purpose of the .action property on controls? I discovered that if say a form has 2 toggle buttons and they have the same action string set then toggling one toggled the other, they became linked. also we get an action directory in the source folder with action files in a form...
by BruceSteers
Friday 18th September 2020 10:23pm
Forum: Project showcase
Topic: Very simple Icon maker example
Replies: 9
Views: 8910

Re: Very simple Icon maker example

you're absolutly crazy ... big thanks for that ... haha well when you're on it you're on it :) I've now added an offset slider to adjust/move the cropping :) I also found HUGE images would work slowly with moving the crop/updating the image so if it loads an image with a width above 2048px it shrin...