Re: [Gambas-user] Changing text on Tabstrip

2009-03-15 Thread Richard Gladman
richard terry wrote: If one has say three tabs tab1 tab2 tab3 and the contents of Tab1 are showing. Is it possible to change the text on either tab2 or 3 without the display changing. If one does : tabstrip1.index = 2 and tabstrip1.text = sometext Then this has the same

Re: [Gambas-user] No EXEC Output but Works in Terminal

2009-03-03 Thread Richard Gladman
A Person wrote: Good Day . . . I am using Gambas 2.8.2-1ubuntu1. I wrote a program that randomly displays a line from a text file. The code worked in pure Gambas but then I tried to improve it! (Ho Ho Ho) I searched around and I came up with and modified an executable BASH script

Re: [Gambas-user] Properties in Classes

2009-02-20 Thread Richard Gladman
BenoƮt Minisini wrote: Hi All, As a Gambas Newbie I was wondering if there are any advantages to using properties as opposed to get / set methods? Thanks for any help Richard The syntax is clearer. You usually use get / set methods in language that do not have properties. As