Re: [Gambas-user] changing the picture in a columnview item

2010-02-15 Thread Joshua Higgins
Of course, in the simplest of places! -- SOLARIS 10 is the OS for Data Centers - provides features such as DTrace, Predictive Self Healing and Award Winning ZFS. Get Solaris 10 NOW http://p.sf.net/sfu/solaris-dev2dev __

Re: [Gambas-user] changing the picture in a columnview item

2010-02-15 Thread Fabien Bodard
MachineView[thekey].Picture = Picture["waiting.png"] 2010/2/15 Joshua Higgins : > Hi list, > > I'm creating a columnview item to show status, like this: > > MachineView.Add("192.168.0.1", "router", Picture.Load("waiting.png")) > ... > MachineView.Item[4] = "Waiting" > > But then changing it later

[Gambas-user] changing the picture in a columnview item

2010-02-15 Thread Joshua Higgins
Hi list, I'm creating a columnview item to show status, like this: MachineView.Add("192.168.0.1", "router", Picture.Load("waiting.png")) ... MachineView.Item[4] = "Waiting" But then changing it later on as a status update comes in like this: MachineView[thekey][4] = "Online" My question is,