Re: [Gambas-user] Could someone give me a brief explanation of parents and kids in this example

2014-05-15 Thread Rolf-Werner Eilert
Am 14.05.2014 22:27, schrieb Jb Skaggs: So a child is a subcategory of a parent in treeview then? If you have a TreeView that shows categories - yes. You can put it that way. Others would call them nodes, and nodes that hang at the line under the same node (their parent node) are its

Re: [Gambas-user] Could someone give me a brief explanation of parents and kids in this example

2014-05-15 Thread Jb Skaggs
That really helped me. :) On Thu, May 15, 2014 at 5:47 AM, Rolf-Werner Eilert eilert-sprac...@t-online.de wrote: Am 14.05.2014 22:27, schrieb Jb Skaggs: So a child is a subcategory of a parent in treeview then? If you have a TreeView that shows categories - yes. You can put it that way.

[Gambas-user] Could someone give me a brief explanation of parents and kids in this example

2014-05-14 Thread Jb Skaggs
In the treeview example I would like to understand the parent and kids aspects: Public Sub Button1_Click() Dim sIcon As String Dim sParent As String If Textbox1.Text Null Then If RadioButton1.Value Then sIcon = Male.png Else sIcon = Female.png End If 'Gets the

Re: [Gambas-user] Could someone give me a brief explanation of parents and kids in this example

2014-05-14 Thread Rolf-Werner Eilert
Am 14.05.2014 17:57, schrieb Jb Skaggs: In the treeview example I would like to understand the parent and kids aspects: Public Sub Button1_Click() Dim sIcon As String Dim sParent As String If Textbox1.Text Null Then If RadioButton1.Value Then sIcon = Male.png

Re: [Gambas-user] Could someone give me a brief explanation of parents and kids in this example

2014-05-14 Thread B Bruen
On Wed, 14 May 2014 10:57:58 -0500 Jb Skaggs jbskagg...@gmail.com wrote: In the treeview example I would like to understand the parent and kids aspects: Public Sub Button1_Click() Dim sIcon As String Dim sParent As String If Textbox1.Text Null Then If RadioButton1.Value