Re: [Gambas-user] Simple question how to select and activate a radiobutton via code

2008-06-23 Thread charlesg
IF gender = "male" THEN RadioButton1male.value=1 rgds -- View this message in context: http://www.nabble.com/Simple-question-how-to-select-and-activate-a-radiobutton-via-code-tp18081327p18084380.html Sent from the gambas-user mailing list archive at Nabble.com. --

Re: [Gambas-user] Simple question how to select and activate a radiobutton via code

2008-06-23 Thread Rob
On Monday 23 June 2008 20:33, jbskaggs wrote: > When I try and use radiobutton_click() > it performs the commands in the radiobuton_click() sub but it does > not show the radiobutton as being "depressed" or selected as if you > had clicked on it with a mouse. You've got it a bit backwards. You n

[Gambas-user] Simple question how to select and activate a radiobutton via code

2008-06-23 Thread jbskaggs
When I try and use radiobutton_click() it performs the commands in the radiobuton_click() sub but it does not show the radiobutton as being "depressed" or selected as if you had clicked on it with a mouse. I have also tried radiobutton.setfocus that did not do it either. Simply put: when the

Re: [Gambas-user] How to package and distribute our software written in Gambas

2008-06-23 Thread jbskaggs
I replied to this via email. But I'd love any help. The website where I host my stuff is www.wwmkr.com. I will be posting a new release this evening that rewrites several complete modules. JB richard terry-2 wrote: > > On Mon, 23 Jun 2008 11:51:55 am jbskaggs wrote: >> After six months I hav

Re: [Gambas-user] How to package and distribute our software written in Gambas

2008-06-23 Thread richard terry
On Mon, 23 Jun 2008 11:51:55 am jbskaggs wrote: > After six months I have a package that is nearly finished. > > I understand how to make an installation package via Gambas. > > What I need though is a one-click means of installing my data directories > into the correct area on the user's drive. >

Re: [Gambas-user] How to turn off watch window

2008-06-23 Thread jbskaggs
I use the standard gnome desktop that comes with preset with ubuntu. Alt f4 did close it and it hasn't popped up again. JB Benoit Minisini wrote: > > On samedi 21 juin 2008, jbskaggs wrote: >> It's been a few months since Ive asked a question. But this is >> frustrating >> me and it's probabl

Re: [Gambas-user] Bug report

2008-06-23 Thread Benoit Minisini
On lundi 23 juin 2008, Ron wrote: > Hi, > > This will raise a signal 11 and produce a coredump > > PUBLIC SUB Form_Open() > > DIM b[2] AS Byte > > b[0] = &H1 > b[1] = &H2 > > txtBox.Text = Str$(b) > > END > > I know the Str$ is complete bogus, but to dump core on that... > > Gambas 2.7.0 >

Re: [Gambas-user] Select a Tabelview entry?

2008-06-23 Thread Benoit Minisini
On lundi 23 juin 2008, Stefan Miefert wrote: > > Tableview.MoveTo(Row, Column) > > Tableview.Current.Selected = True > > Hello, > > I try this > Tableview.Rows[3].selected = true > > Because your example dosent work. > This is running fine but how can I get the rownumber? > Tableview.find(row,colu

Re: [Gambas-user] How to turn off watch window

2008-06-23 Thread Benoit Minisini
On samedi 21 juin 2008, jbskaggs wrote: > It's been a few months since Ive asked a question. But this is frustrating > me and it's probably a noobie question- even though I am much more familiar > with Gambas. > > Somehow I turned on a watch window I assume that's the name of the window > I don't

Re: [Gambas-user] Access resources in another installed gambas project

2008-06-23 Thread Patrik Karlsson
>> Is it be possible to split the 'data' to a separate Gambas project, >> and access sounds and images from the main project? > You can build your data project as a component and access ressources through > an api ? Thank you, I will look into that. Found this page, http://www.gambasdoc.org/help

[Gambas-user] Bug report

2008-06-23 Thread Ron
Hi, This will raise a signal 11 and produce a coredump PUBLIC SUB Form_Open() DIM b[2] AS Byte b[0] = &H1 b[1] = &H2 txtBox.Text = Str$(b) END I know the Str$ is complete bogus, but to dump core on that... Gambas 2.7.0 Debian 4.0 Regards, Ron.

[Gambas-user] Project translation, Change System.Language in run time

2008-06-23 Thread Patrik Karlsson
When I try no change System.Language in run time, my objects text does not change. If I start with LC_ALL=xx, I get the selected language, but how to change it while running? PS System.Language = "fa_IR" change the direction to Right To Left in menues and tabs, but the strings are not changed. Am

Re: [Gambas-user] Access resources in another installed gambas project

2008-06-23 Thread Laurent Carlier
Le Monday 23 June 2008 15:30:44 Patrik Karlsson, vous avez écrit : > Hello, Im currently working on a project involving a couple of MB of > sound clips and pictures. > Is it be possible to split the 'data' to a separate Gambas project, > and access sounds and images from the main project? > > In De

Re: [Gambas-user] Select a Tabelview entry?

2008-06-23 Thread Stefan Miefert
> Oops - sorry, I didn't look this up before I answered... > > You're right, it's Tableview.Rows[something].Selected > > Maybe there are 2 things: not to write it in the _data event AND look > which mode the control has for selecting Rows and Columns. I always use > Line mode, never Both. Hello,

[Gambas-user] Access resources in another installed gambas project

2008-06-23 Thread Patrik Karlsson
Hello, Im currently working on a project involving a couple of MB of sound clips and pictures. Is it be possible to split the 'data' to a separate Gambas project, and access sounds and images from the main project? In Delphi, i wrote a DLL, and in Java jar files. What is the best and easiest way t

Re: [Gambas-user] feature request

2008-06-23 Thread Benoit Minisini
On lundi 23 juin 2008, o.s.p wrote: > hallo! > i'm writing a litte app so i've seen i would like some changes in the ide: > -the hierachy browser at a side of the proprierty editor (into a > sidepanel) so i can easily select and edit object > -the hierachy browser with the option to view as tree or

[Gambas-user] feature request

2008-06-23 Thread o.s.p
hallo! i'm writing a litte app so i've seen i would like some changes in the ide: -the hierachy browser at a side of the proprierty editor (into a sidepanel) so i can easily select and edit object -the hierachy browser with the option to view as tree or grouped by group (selecting the group i can

Re: [Gambas-user] Select a Tabelview entry?

2008-06-23 Thread Rolf-Werner Eilert
Stefan Miefert schrieb: >> I wouldn't do it in the _data event but somewhere else. Then try >> >> Tableview.MoveTo(Row, Column) >> Tableview.Current.Selected = True > > > Hello, > > hm, this dosent work. Their is no select/selected after the "TBLview." > Oops - sorry, I didn't look this u

Re: [Gambas-user] Select a Tabelview entry?

2008-06-23 Thread Stefan Miefert
> Tableview.MoveTo(Row, Column) > Tableview.Current.Selected = True Hello, I try this Tableview.Rows[3].selected = true Because your example dosent work. This is running fine but how can I get the rownumber? Tableview.find(row,column) # Didn't work? Or? How can I get the rownumber ? -

Re: [Gambas-user] Select a Tabelview entry?

2008-06-23 Thread Stefan Miefert
> I wouldn't do it in the _data event but somewhere else. Then try > > Tableview.MoveTo(Row, Column) > Tableview.Current.Selected = True Hello, hm, this dosent work. Their is no select/selected after the "TBLview." -

Re: [Gambas-user] Select a Tabelview entry?

2008-06-23 Thread Rolf-Werner Eilert
Stefan Miefert schrieb: > Hello, > > how can i select a tableview entry? > > I use this code > > Public sub tableview_data(Row AS Integer, Column AS Integer) > > RESdata.MoveTo(Row) > Tableview.data.text = Str(REsdata(RESdata.fields[column].name]) > > > If Column = 0 then >

Re: [Gambas-user] How to package and distribute our software written in Gambas

2008-06-23 Thread Stefano Palmeri
Il lunedì 23 giugno 2008 03:51:55 jbskaggs ha scritto: > After six months I have a package that is nearly finished. > > I understand how to make an installation package via Gambas. > > What I need though is a one-click means of installing my data directories > into the correct area on the user's dr

[Gambas-user] Select a tableview Row?

2008-06-23 Thread Stefan Miefert
Hello, i try this TBLview.Rows[Rownumber].Seleczed = true but this crash the systemm. When I insert this code too TBLview.Data.backcolor = color.red Gambas select the color but I cant change the row . When I try it, the text inside the first fieldbecome the text of the second field:( How can