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

Re: [Gambas-user] My appreciation and thanks

2014-05-14 Thread Jb Skaggs
much. Thanks for the hard work. JB SKaggs -- Is your legacy SCM system holding you back? Join Perforce May 7 to find out: #149; 3 signs your SCM is hindering your productivity #149; Requirements for releasing

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

2014-05-14 Thread Jb Skaggs
number of kids End If End My understanding was that a kid or child was a copy or instant of the parent but I don't know if this is true in Gambas- so I would like to understand what actually happens when something is a parent and child. Thank you. Jb Skaggs

[Gambas-user] best programming practices:

2014-05-11 Thread Jb Skaggs
is it better to have multiple forms or one form with lots of controls that show and hide? I like to have multiple forms- but which is faster and considered the better method? -- Accelerate Dev Cycles with Automated

[Gambas-user] Several years ago I finished a application for writers in gambas2 I need some advice for rewriting

2014-05-09 Thread Jb Skaggs
, and for each scene a text. Thanks JB Skaggs -- Is your legacy SCM system holding you back? Join Perforce May 7 to find out: #149; 3 signs your SCM is hindering your productivity #149; Requirements for releasing software

Re: [Gambas-user] Several years ago I finished a application for writers in gambas2 I need some advice for rewriting

2014-05-09 Thread Jb Skaggs
it in an XML scheme. Just a thought On Fri, May 9, 2014 at 3:59 PM, Jb Skaggs jbskagg...@gmail.com wrote: This is basically a fancy editor that is broken down into scenes, chapters My question is the best way to track the texts. I am keeping each scene's text in a directory dedicated to each

Re: [Gambas-user] Several years ago I finished a application for writers in gambas2 I need some advice for rewriting

2014-05-09 Thread Jb Skaggs
/ref footerThis is a footer section/footer /chapter /book On Fri, May 9, 2014 at 5:19 PM, Jb Skaggs jbskagg...@gmail.com wrote: I thought XML was primarily for theming websites how would this help me? I have never used XML. Could you point me to an example? On Fri, May 9, 2014

Re: [Gambas-user] Form.load incorrectly overwritten

2014-05-09 Thread Jb Skaggs
Lahtinen jussi.lahti...@gmail.com wrote: Hard to say without seeing the code. But check menu names from the form. Using reserved name may be interpreted as attempt to override. Jussi On Sat, May 10, 2014 at 4:36 AM, Jb Skaggs jbskagg...@gmail.com wrote: As I am converting from gambas2

[Gambas-user] My appreciation and thanks

2014-05-08 Thread Jb Skaggs
. I am a visual person with dyslexia and so straight coding is very difficult for me this program helps me produce use app's for my church, friends and hopefully the linux community at large. But without your drive to have done this I would be struggling very much. Thanks for the hard work. JB

Re: [Gambas-user] Fontchooser help

2014-05-07 Thread Jb Skaggs
thank you this will help a lot :) On Wed, May 7, 2014 at 5:03 PM, Willy Raets wi...@earthshipbelgium.be wrote: On Wed, 2014-05-07 at 15:32 -0500, Jb Skaggs wrote: I have not been able to find any font chooser examples. I can get my textarea font to match the file chooser font, but I can't seem

Re: [Gambas-user] Timer question

2009-04-01 Thread JB Skaggs
the timer1 again and resets A Timer1.delay = i Timer1.STOP ValueBox2.Value = (Timer1.Delay) / 1000 Timer1.Start Timer2.Start a = 0 END PUBLIC SUB Timer1_Timer() ' what happens when timer1 goes off Button1.BackColor = Color.Red Timer2.Stop Timer3.Stop ValueBox1.Value = a END JB SKaggs On Wed