Search found 11 matches

by Matthew-Collins
Saturday 20th February 2021 2:58pm
Forum: General
Topic: Font Selection Broken in Gambas Daily PPA
Replies: 1
Views: 1867

Font Selection Broken in Gambas Daily PPA

Hi,

Anyone notice the font selection is broken in Gambas Daily, see below ?

Linux Mint 20.1 - Gambas Daily
Screenshot from 2021-02-20 14-51-03.png
Screenshot from 2021-02-20 14-51-03.png (53.65 KiB) Viewed 1867 times
Linux Mint 20.1 - Gambas Stable
Image
by Matthew-Collins
Saturday 26th December 2020 7:35am
Forum: General
Topic: GPIO on Raspberry Pi
Replies: 15
Views: 16145

Re: GPIO on Raspberry Pi

Hi, can you post a WiringPi example/demo project ?
by Matthew-Collins
Friday 25th December 2020 9:51am
Forum: General
Topic: GPIO on Raspberry Pi
Replies: 15
Views: 16145

Re: GPIO on Raspberry Pi

Hi, This is a Gambas class, so create a new class file in your project called "GPIO_Pin" and copy and paste the code into it... https://raw.githubusercontent.com/Matthew-Collins/gb.PiconZero/master/.src/GPIO_Pin.class Then in your code: Dim Pin As New GPIO_Pin(16) Pin.SetDirection(False) F...
by Matthew-Collins
Tuesday 22nd December 2020 9:06pm
Forum: General
Topic: GPIO on Raspberry Pi
Replies: 15
Views: 16145

Re: GPIO on Raspberry Pi

by Matthew-Collins
Saturday 26th September 2020 3:08pm
Forum: General
Topic: mysql checksum
Replies: 2
Views: 2861

Re: mysql checksum

Hi Bill, I got checksum table working in gambas, see below: Public Sub Button1_Click() Dim hConn As Connection = Connections["Connection1"] hConn.Open Dim hresult As Result = hconn.Exec("CHECKSUM TABLE test") Print hresult!Checksum End Note case sensitive i.e ...!Checksum Also tr...
by Matthew-Collins
Thursday 23rd July 2020 6:38pm
Forum: General
Topic: URL.Decode but not implemented in its source code
Replies: 4
Views: 12686

Re: URL.Decode but not implemented in its source code

Hi, The decode method is in the gb.util.web url.class source code... gb.web includes gb.util.web, see file (Include=gb.util.web): https://gitlab.com/gambas/gambas/-/blob/master/comp/src/gb.web/.component gb.web: https://gitlab.com/gambas/gambas/-/blob/master/comp/src/gb.web/.src/URL.class gb.util.we...
by Matthew-Collins
Saturday 27th April 2019 5:54pm
Forum: General
Topic: Where is the Software Farm documentation?
Replies: 7
Views: 8152

Re: Where is the Software Farm documentation?

Hi, My best guess is the database is a sqlite or similar on the main Gambas webserver, I'm not sure you will be able to download the raw database file... The Gambas Farm webpage on Gambas.One is on github: https://github.com/Matthew-Collins/gambas-farm You can however poke the web api, see below exa...
by Matthew-Collins
Sunday 24th June 2018 3:49am
Forum: General
Topic: Graph details
Replies: 9
Views: 12934

Re: Graph details

I’ve submitted a Gambas bug see bugtracker 1354
by Matthew-Collins
Thursday 1st March 2018 3:37pm
Forum: General
Topic: Send command "string" over tcp/ip
Replies: 15
Views: 19381

Re: Send command "string" over tcp/ip

Hi Agili, Myself and Charlie have done some testing for you, the issue is the iptables firewall on linux mint. Try these steps: 1) Turn Off ufw firewall > Status: Off (can be done from gufw "Firewall Configuration") In Terminal: 2) sudo iptables --flush 3) sudo iptables -X 4) sudo iptables...
by Matthew-Collins
Sunday 17th September 2017 8:12am
Forum: General
Topic: JSON files
Replies: 24
Views: 23003

Re: JSON files

Hi Guys, I think the "Collection" could do with a ".Keys" as well as ".Key" function.... ? In the meantime, see my GetKeys(Collection) function below: Public Sub Main() Dim vNew As Variant Dim sNew As String Dim Keys1 As String[] Dim Keys2 As String[] Shell "wget -...