Re: [Gambas-user] How do I pass a user parameter from a dialog form?

2014-11-18 Thread Martin McGlensey
Tobi, Thanks for your response. I did not get the attachment. It was scrubbed of the list. Would you please send it to my personal e-mail (mmcg29...@frontier.com ). The method of adding a property should work. I tried adding a Class but, I'm not real sure how to

Re: [Gambas-user] Borders of Panel aren't visible.

2014-11-18 Thread Ru Vuott
Hello Fabien, uh it's possible. However, by using GTK3 the different types of border work. ...bah ! OK, thanks, Fabien. vuott Mar 18/11/14, Fabien Bodard ha scritto: Oggetto: Re: [Gambas-user] Borders of Panel aren't visible. A: "mailing

Re: [Gambas-user] problems in trie class

2014-11-18 Thread Charlie Reinl
Am Dienstag, den 18.11.2014, 21:48 +0100 schrieb Tobias Boege: > On Tue, 18 Nov 2014, Karl Reinl wrote: > > Salut Tobi, > > > > played with you trie example (trietest) > > > > I'm glad to hear that :-) > > > > > it crash if > > p = h.GetPrefix("texte") find nothing (p=null), even when change >

Re: [Gambas-user] Borders of Panel aren't visible.

2014-11-18 Thread Fabien Bodard
I think the problem come from there as the Theme provide the style 2014-11-18 20:24 GMT+01:00 Ru Vuott : > I use: > >> Theme=QCleanlooks > > > regards > vuott > > > > > Mar 18/11/14, Fabien Bodard ha scritto: > > Oggetto: Re: [Gambas-user] Borders of

Re: [Gambas-user] How do I pass a user parameter from a dialog form?

2014-11-18 Thread Fabien Bodard
the common way is : In the form : Static Public Param1 as string Static Public Param2 as String Static Public Param3 as string Public Function Run(hParam1 as string, hParam2 as string, hParam3 as string) as boolean dim hForm as FDialog Return Not Me.ShowDialog() end Public Sub Form_Open1

Re: [Gambas-user] How do I pass a user parameter from a dialog form?

2014-11-18 Thread Tobias Boege
On Tue, 18 Nov 2014, Martin McGlensey wrote: > Hello, > > > > I have created a dialog form. As created by Gambas, it has an OK and Cancel > button. I want to return three properties or an array from the form. One > each for the three textboxes on the form. > > I added a textbox to the form to

Re: [Gambas-user] problems in trie class

2014-11-18 Thread Tobias Boege
On Tue, 18 Nov 2014, Karl Reinl wrote: > Salut Tobi, > > played with you trie example (trietest) > I'm glad to hear that :-) > > it crash if > p = h.GetPrefix("texte") find nothing (p=null), even when change > to p = h.GetPrefix("Texte") > > My change is h["texte"] to h["Texte"] (source attach

Re: [Gambas-user] How do I pass a user parameter from a dialog form?

2014-11-18 Thread Roki
try this: 1) in main form Property Login As String Private strLogin AS String Private Function Login_Read() Return strLogin End Private Sub Login_Write(Value as String) as String strLogin = Value End Private sub Button1_Click() dim f as new frmDialog <-- Your name of

Re: [Gambas-user] How do I pass a user parameter from a dialog form?

2014-11-18 Thread roberto
Hi Marty, you would use a new class file were store your variables. In this case the class is a bridge from your dialog to main form Regards Il 18/11/2014 20:42, Martin McGlensey ha scritto: > Hello, > > > > I have created a dialog form. As created by Gambas, it has an OK and Cancel > butto

[Gambas-user] problems in trie class

2014-11-18 Thread Karl Reinl
Salut Tobi, played with you trie example (trietest) it crash if p = h.GetPrefix("texte") find nothing (p=null), even when change to p = h.GetPrefix("Texte") My change is h["texte"] to h["Texte"] (source attached) -- Amicalement Charlie trietest-0.0.1_Charlie.tar.gz Description: application/co

[Gambas-user] How do I pass a user parameter from a dialog form?

2014-11-18 Thread Martin McGlensey
Hello, I have created a dialog form. As created by Gambas, it has an OK and Cancel button. I want to return three properties or an array from the form. One each for the three textboxes on the form. I added a textbox to the form to test it. Call it Textbox1. Used the code below to add a propert

Re: [Gambas-user] Borders of Panel aren't visible.

2014-11-18 Thread Ru Vuott
I use: > Theme=QCleanlooks regards vuott Mar 18/11/14, Fabien Bodard ha scritto: Oggetto: Re: [Gambas-user] Borders of Panel aren't visible. A: "mailing list for gambas users" Data: Martedì 18 novembre 2014, 19:59 Can you tell us what is

Re: [Gambas-user] Borders of Panel aren't visible.

2014-11-18 Thread Fabien Bodard
Can you tell us what is the themes you are using ? 2014-11-18 14:21 GMT+01:00 Ru Vuott : > Hello, > > by using QT4 border of Panel Container aren't visible. > By using GTK: > - border.Rised is not visible; > - border.Suken I do not see differences (it seems like Etched). > > Regards > vuott > >

Re: [Gambas-user] Progressbar_mousedown() does not work [solved]

2014-11-18 Thread Fabien Bodard
if Object.Class(hControl).Name = sControlName then return hControl Can be replaced by if Object.Type(hControl) = sControlName then return hControl 2014-11-17 23:14 GMT+01:00 Fabien Bodard : > well this is another temporary soluce for this problem Tobias : > > > Private Function FindControl(hPare

[Gambas-user] Borders of Panel aren't visible.

2014-11-18 Thread Ru Vuott
Hello, by using QT4 border of Panel Container aren't visible. By using GTK: - border.Rised is not visible; - border.Suken I do not see differences (it seems like Etched). Regards vuott [System] Gambas=3.6.90 --> OperatingSystem=Linux Kernel=3.13.0-24-generic Architecture=x86_64 Distributi

Re: [Gambas-user] Gambas-user Digest, Vol 102, Issue 34

2014-11-18 Thread Charlie Reinl
Am Dienstag, den 18.11.2014, 03:35 + schrieb Sam Dadds: > Thanks for the replies. > > The ListView.Ignore is set and works as expected, just unable to line up > completly with the > ComboBox. > > Starting to look at Christof Thalhofer's Cobmobox and noticed am actual > Window is being >

Re: [Gambas-user] Events in local classes dont show up in the help

2014-11-18 Thread Benoît Minisini
Le 18/11/2014 07:08, Fabien Bodard a écrit : > Well it seem that the problem is for all local helps. As you can see > in my screenshot the class events are not listed. > > 2014-11-18 2:56 GMT+01:00 B Bruen : >> Looking at the help for a class in the current project it seems that any >> events decl