[Gambas-user] Concurrent gb.settings

T Lee Davidson t.lee.davidson at gmail.com
Tue May 1 15:08:15 CEST 2018


Public Sub Form_Close()

  Settings["Editor/Color[0]"] = "&FFFFFF&"
  Settings["Editor/Color[1]"] = "&000000&"
  Settings["Editor/Color[2]"] = "&00C0A0&"
  Settings["Editor/Color[3]"] = "&00C000&"

End

~~OR~~

Public Sub Form_Close()

  Dim Color As New String[]

  Color.Add("&FFFFFF&", 0)
  Color.Add("&000000&", 1)
  Color.Add("&00C0A0&", 2)
  Color.Add("&00C000&", 3)
  Settings["Editor/Color"] = Color

End


-- 
Lee


On 04/30/2018 09:35 PM, PICCORO McKAY Lenz wrote:
> that's i not taking about:
> 
> see one level up in wiki doc: http://gambaswiki.org/wiki/comp/gb.settings
> 
> 
> [editor]
> 
> Color*[**0**]* *=* "&FFFFFF&" Color*[**1**]* *=* "&000000&" Color*[**2**]* *=* "&00C0A0&" Color*[**3**]* *=* "&00C000&"
> 
> 
> 
> Lenz McKAY Gerardo (PICCORO)


More information about the User mailing list