Search found 1546 matches

by BruceSteers
Monday 10th April 2023 9:52am
Forum: Beginners
Topic: using Gambas for single board pc Appliance
Replies: 4
Views: 739

Re: using Gambas for single board pc Appliance

Thanks for the response. I have spent most of the weekend trying to figure out how to proceed. obviously this week will get a Linux SBC install gambas and start learning I have seen how the web apllication works, although having a tough time understanding how I would get my console app to do this. ...
by BruceSteers
Sunday 9th April 2023 11:10pm
Forum: Beginners
Topic: RegExp Global Search
Replies: 7
Views: 1080

Re: RegExp Global Search

yes but easier to not use regexp at all and just use the exiftool -Tag name feature ;) the following will give the same result... exiftool -FileSize -Make -ImageSize -Megapixels -ShutterSpeed ~/Pictures/myphoto.jpg (couldn't get -CameraModelName to work but -Make gave the same string) It does not lo...
by BruceSteers
Sunday 9th April 2023 6:22pm
Forum: General
Topic: Opera and cry from the Gambas IDE
Replies: 15
Views: 2954

Re: Opera and cry from the Gambas IDE

It will only play today , then play again in 40 days time (ascension day)
Then that's it till Christmas
by BruceSteers
Sunday 9th April 2023 5:24pm
Forum: General
Topic: Opera and cry from the Gambas IDE
Replies: 15
Views: 2954

Re: Opera and cry from the Gambas IDE

If you really do not like it you can change the code... Line 105 of FWelcome.class has this... bHasTear = PlaySound() That runs the playsound method... You could just comment out that line and recompile the ide. Or edit the method... Private Sub PlaySound() As Boolean Dim dNow As Date Dim iYear As I...
by BruceSteers
Saturday 8th April 2023 11:27pm
Forum: Beginners
Topic: RegExp Global Search
Replies: 7
Views: 1080

Re: RegExp Global Search

PS. for exiftool you should be able to extract the tags just using their names without spaces. ie... exiftool -FileSize /file/path exiftool -ImageSize /file/path exiftool -CameraModelName /file/path exiftool -ShutterSpeed /file/path and so on. or... exiftool -FileSize -ImageSize -CameraModelName -Sh...
by BruceSteers
Saturday 8th April 2023 11:14pm
Forum: Beginners
Topic: RegExp Global Search
Replies: 7
Views: 1080

Re: RegExp Global Search

i have never used regexp but the wiki clearly shows the use. maybe have a read of that and all the methods for RegExp https://gambaswiki.org/wiki/comp/gb.pcre/regexp Dim sDiskIO, sVal As String Dim cVal As New Collection Dim rMatch As New RegExp ' get disk I/O stats Exec ["vmstat", "-...
by BruceSteers
Tuesday 4th April 2023 11:27am
Forum: General
Topic: Problem with installing gambas3
Replies: 7
Views: 1077

Re: Problem with installing gambas3

Looking very closely, its possible that the console has shrunk to zero height! Right click on that area produced a message saying that the console is set to 'invisible', selected set to 'visible' and console now shows. Yes be sure you do not have "auto-hide" and "transparent handles&...
by BruceSteers
Tuesday 4th April 2023 7:05am
Forum: Beginners
Topic: SVG scaling [SOLVED]
Replies: 4
Views: 768

Re: SVG scaling

I guess with svg you can use resize and paint to make a Picture object. Here's a function to create a Picture object from an svgimage using it's Resize and Paint methods '' convert an svg image to a picture Public Sub SvgToPic(sPath As String, W As Integer, H As Integer) As Picture Dim sv As SvgImag...
by BruceSteers
Wednesday 29th March 2023 3:45pm
Forum: General
Topic: Keyboard stops working
Replies: 10
Views: 7973

Re: Keyboard stops working

grayghost4 wrote: Wednesday 29th March 2023 3:27pm This is a 3 year old thread, and the OP has not been back since then ;)
hahaha

Thank you , I missed that
by BruceSteers
Wednesday 29th March 2023 2:24pm
Forum: General
Topic: Keyboard stops working
Replies: 10
Views: 7973

Re: Keyboard stops working

also in the IDE go to the ? / System information menu
Press "Copy" to copy the info there and paste it here.
that is helpful info when helping with issues.