Re: [Gambas-user] Really dumb question about dialog forms

2009-12-11 Thread Kadaitcha Man
2009/12/12 Fabien Bodard : > 2009/12/12 Kadaitcha Man : >> In short, Fabien, as far as I can tell, the only way to make it work >> correctly in gb2 is to do it the way I originally said to do it. Of >> course I'm open to being shown to be wrong. > > in fact you are right in the vb way ... but not

Re: [Gambas-user] Really dumb question about dialog forms

2009-12-11 Thread Fabien Bodard
2009/12/12 Kadaitcha Man : > 2009/12/11 Fabien Bodard : > >> Static Public sValue as string >> >> Public Sub Run () As Boolean > > I knew there was a reason not to use your method and to make the > recommendation I did. > > If you tested that code then I presume you did it in gb3 and not gb2. > > G

Re: [Gambas-user] Really dumb question about dialog forms

2009-12-11 Thread Kadaitcha Man
2009/12/11 Fabien Bodard : > Static Public sValue as string > > Public Sub Run () As Boolean I knew there was a reason not to use your method and to make the recommendation I did. If you tested that code then I presume you did it in gb3 and not gb2. Gambas 2 either crashes out with a SIG 11, or

Re: [Gambas-user] Really dumb question about dialog forms

2009-12-11 Thread Les Hardy
richard terry wrote: > On Friday 11 December 2009 17:22:54 you wrote: >> 2009/12/11 richard terry : >>> Hi List, >>> >>> My really stupid question for the week. >> I'm sorry. You've already done that three times this week. >> >>> If I had a textbox on the form and wanted to return its contents, wha

Re: [Gambas-user] Really dumb question about dialog forms

2009-12-11 Thread Kadaitcha Man
2009/12/11 Fabien Bodard : > Also if this is not to answer the question ... It is an answer to the question. > It is wiser to shut up! > if you do not calm kadaitcha man you gonna get fired from this mailing > list. I have not used it but you are insulting and it is not > necessary. I would sim

Re: [Gambas-user] Really dumb question about dialog forms

2009-12-11 Thread Les Hardy
richard terry wrote: > On Friday 11 December 2009 17:22:54 you wrote: >> 2009/12/11 richard terry : >>> Hi List, >>> >>> My really stupid question for the week. >> I'm sorry. You've already done that three times this week. >> >>> If I had a textbox on the form and wanted to return its contents, wha

Re: [Gambas-user] Really dumb question about dialog forms

2009-12-11 Thread Fabien Bodard
if not MyForm.Run() then Print MyForm.sValue endif 2009/12/11 Fabien Bodard : > if you do not calm kadaitcha man you gonna get fired from this mailing > list. I have not used it but you are insulting and it is not > necessary. I would simply point out to you that all your intervention > are not

Re: [Gambas-user] Really dumb question about dialog forms

2009-12-11 Thread Fabien Bodard
if you do not calm kadaitcha man you gonna get fired from this mailing list. I have not used it but you are insulting and it is not necessary. I would simply point out to you that all your intervention are not necessarily very bright Also if this is not to answer the question ... It is wiser to sh

Re: [Gambas-user] Really dumb question about dialog forms

2009-12-11 Thread Kadaitcha Man
2009/12/11 Doriano Blengino : > Kadaitcha Man ha scritto: >>> If I create a new form with the dialog support it gets this code: >>> Public Sub Run() As Boolean >>> >> >>> If I had a textbox on the form and wanted to return its contents, what would >>> be the change in syntax required? >>> >> >> Non

Re: [Gambas-user] Really dumb question about dialog forms

2009-12-11 Thread Doriano Blengino
Kadaitcha Man ha scritto: >> If I create a new form with the dialog support it gets this code: >> Public Sub Run() As Boolean >> > >> If I had a textbox on the form and wanted to return its contents, what would >> be the change in syntax required? >> > > None whatsoever. > > Create a publ

Re: [Gambas-user] Really dumb question about dialog forms

2009-12-10 Thread Kadaitcha Man
2009/12/11 richard terry : > BTW when replying on the list its useful ***not to snip out the guts of the > question*** so that others reading your reply can make sense of it. Why put the onus on me for something that annoys only you? If you don't like the way I reply, don't read them. --

Re: [Gambas-user] Really dumb question about dialog forms

2009-12-10 Thread richard terry
On Friday 11 December 2009 17:22:54 you wrote: > 2009/12/11 richard terry : > > Hi List, > > > > My really stupid question for the week. > > I'm sorry. You've already done that three times this week. > > > If I had a textbox on the form and wanted to return its contents, what > > would be the cha

Re: [Gambas-user] Really dumb question about dialog forms

2009-12-10 Thread Kadaitcha Man
2009/12/11 richard terry : > Hi List, > > My really stupid question for the week. I'm sorry. You've already done that three times this week. > If I had a textbox on the form and wanted to return its contents, what would > be the change in syntax required? None whatsoever. Create a public variab

[Gambas-user] Really dumb question about dialog forms

2009-12-10 Thread richard terry
Hi List, My really stupid question for the week. If I create a new form with the dialog support it gets this code: Public Sub Run() As Boolean Return Not Me.ShowModal() End Public Sub btnOK_Click() Me.Close(True) End Public Sub btnCancel_Click() Me.Close End If I had a textbox on t