Re: [Gambas-user] Controls on form do not respond.

2014-01-02 Thread VonZorch
My archivers are being balky, I couldn't send the entire project. What follows is the class files for the main form and the opened form. ' Gambas class file frmMain Private Names As String[] Private Stats As New FrmStat[] Private strHtQ[2] As String Private strWtQ[2] As String Private Hx As Stri

Re: [Gambas-user] Cotrols don't show.

2014-01-02 Thread VonZorch
I finally found the solution. "Private lblHt[11] As Label" should be Private lblHt[11] As New Label It's amazing how easy it is to fix a problem when you can access the help files. -- View this message in context: http://gambas.8142.n7.nabble.com/Cotrols-don-t-show-tp44970p44989.html Sent fro

Re: [Gambas-user] GridView question

2014-01-02 Thread Benoît Minisini
Le 02/01/2014 23:20, Charlie Reinl a écrit : > oh, Michael said 'you are not alone', may be I am? > Nobody ? > > > Salut, > > where can I find the Row-headers.Width and Column-headers.Height, for > finally place my Editor right to the cell... > Or missed I something? > This > > With GV1[GV1.Row, 1

[Gambas-user] GridView question

2014-01-02 Thread Charlie Reinl
oh, Michael said 'you are not alone', may be I am? Nobody ? Salut, where can I find the Row-headers.Width and Column-headers.Height, for finally place my Editor right to the cell... Or missed I something? This With GV1[GV1.Row, 1] cbxFName.Move(GV1.X + .X , GV1.Y + .Y , .Width, .Height) w

Re: [Gambas-user] Can't compile rev 6055

2014-01-02 Thread Fabien Bodard
thanks ... it's ok now 2014/1/2 Benoît Minisini : > Le 02/01/2014 22:29, Fabien Bodard a écrit : >> Problem on compiling gtk3 : >> >> GTK3 Version : 3.10.6 on Arch >> > > It should be good with r6057! > > -- > Benoît Minisini > >

Re: [Gambas-user] Can't compile rev 6055

2014-01-02 Thread Benoît Minisini
Le 02/01/2014 22:29, Fabien Bodard a écrit : > Problem on compiling gtk3 : > > GTK3 Version : 3.10.6 on Arch > It should be good with r6055! -- Benoît Minisini -- Rapidly troubleshoot problems before they affect your bu

Re: [Gambas-user] Can't compile rev 6055

2014-01-02 Thread Benoît Minisini
Le 02/01/2014 22:29, Fabien Bodard a écrit : > Problem on compiling gtk3 : > > GTK3 Version : 3.10.6 on Arch > It should be good with r6057! -- Benoît Minisini -- Rapidly troubleshoot problems before they affect your bu

[Gambas-user] Can't compile rev 6055

2014-01-02 Thread Fabien Bodard
Problem on compiling gtk3 : GTK3 Version : 3.10.6 on Arch [fabien@mobifab gb.gtk3]$ make make all-recursive make[1]: Entering directory '/home/fabien/Documents/Developpement/trunk/gb.gtk3' Making all in src make[2]: Entering directory '/home/fabien/Documents/Developpement/trunk/gb.gtk3/src' CX

Re: [Gambas-user] gb.gsl Polynomial segfault

2014-01-02 Thread Tobias Boege
On Thu, 02 Jan 2014, Tobias Boege wrote: > Hi, > > I get a segfault from gb.gsl when running the attached project. I looked at > the source and it seems I am allowed to do this... Even if I'm not, a > segfault isn't the most charming way to tell me ;-) > I compile faster than my own shadow ;-) Y

Re: [Gambas-user] gb.gsl Polynomial segfault

2014-01-02 Thread Benoît Minisini
Le 02/01/2014 21:01, Tobias Boege a écrit : > Hi, > > I get a segfault from gb.gsl when running the attached project. I looked at > the source and it seems I am allowed to do this... Even if I'm not, a > segfault isn't the most charming way to tell me ;-) > > GDB output: > > (gdb) r > Starting prog

Re: [Gambas-user] Cotrols don't show.

2014-01-02 Thread ISS Boss
Ah. I wasn't aware of that. I've only newly arrived from VB.NET VonZorch wrote, On 01/02/2014 15:23: This line "lblHt[Loop1] = New Label(Me)" tells the program where to put the control in Gambas. In this case it puts the control on the calling form. Oddly on my main form I can display c

Re: [Gambas-user] Cotrols don't show.

2014-01-02 Thread VonZorch
This line "lblHt[Loop1] = New Label(Me)" tells the program where to put the control in Gambas. In this case it puts the control on the calling form. Oddly on my main form I can display compound controls built on their own form. -- View this message in context: http://gambas.8142.n7.nabble.com/

Re: [Gambas-user] Cotrols don't show.

2014-01-02 Thread Bruce
On Thu, 2014-01-02 at 15:06 -0500, ISS Boss wrote: > Are you telling the Labels WHERE to show? In VB you'd have to do something >like: >With frmMainForm > ' put your loop here >End With >VonZorch wrote, On 01/02/2014 15:00: > > "lblHt[Loop1].Visible = True" that was the firs

Re: [Gambas-user] Controls on form do not respond.

2014-01-02 Thread Tobias Boege
On Thu, 02 Jan 2014, VonZorch wrote: > I have a form called from the main program. > When called it opens and does everything in SUB _new(). However using the > controls on it does not cause any event. I have tried using all varieties > of .Show. > Any help will be greatly appreciated. > There

Re: [Gambas-user] Cotrols don't show.

2014-01-02 Thread ISS Boss
Are you telling the Labels WHERE to show? In VB you'd have to do something like: With frmMainForm ' put your loop here End With VonZorch wrote, On 01/02/2014 15:00: "lblHt[Loop1].Visible = True" that was the first thing I tried, didn't help. Thanks for the quick reply. --

Re: [Gambas-user] Where did the Help Files Go?

2014-01-02 Thread VonZorch
That works fine. Thanks for the help and swift response. -- View this message in context: http://gambas.8142.n7.nabble.com/Where-did-the-Help-Files-Go-tp44965p44975.html Sent from the gambas-user mailing list archive at Nabble.com. -

[Gambas-user] gb.gsl Polynomial segfault

2014-01-02 Thread Tobias Boege
Hi, I get a segfault from gb.gsl when running the attached project. I looked at the source and it seems I am allowed to do this... Even if I'm not, a segfault isn't the most charming way to tell me ;-) GDB output: (gdb) r Starting program: /usr/bin/gbx3 warning: no loadable sections found in add

Re: [Gambas-user] Cotrols don't show.

2014-01-02 Thread VonZorch
"lblHt[Loop1].Visible = True" that was the first thing I tried, didn't help. Thanks for the quick reply. -- View this message in context: http://gambas.8142.n7.nabble.com/Cotrols-don-t-show-tp44970p44973.html Sent from the gambas-user mailing list archive at Nabble.com. --

Re: [Gambas-user] Cotrols don't show.

2014-01-02 Thread ISS Boss
Would a "lblHt[Loop1].Visible = True" help? VonZorch wrote, On 01/02/2014 14:41: Running Gambas 3.1.1 on Mint Linux 16. The code ' Gambas class file Private lblHt[11] As Label Public Sub _new() Dim Loop1 As Byte For Loop1 = 0 To 10 lblHt[Loop1] = New Label(Me) lblHt[Loop1].x = 2

[Gambas-user] Controls on form do not respond.

2014-01-02 Thread VonZorch
I have a form called from the main program. When called it opens and does everything in SUB _new(). However using the controls on it does not cause any event. I have tried using all varieties of .Show. Any help will be greatly appreciated. -- View this message in context: http://gambas.8142.n

[Gambas-user] Cotrols don't show.

2014-01-02 Thread VonZorch
Running Gambas 3.1.1 on Mint Linux 16. The code ' Gambas class file Private lblHt[11] As Label Public Sub _new() Dim Loop1 As Byte For Loop1 = 0 To 10 lblHt[Loop1] = New Label(Me) lblHt[Loop1].x = 20 lblHt[Loop1].y = 20 + (Loop1 * 30) lblHt[Loop1].Text = Str(Loop1) lblHt[Loop

Re: [Gambas-user] Can't compile 3.5.2

2014-01-02 Thread Benoît Minisini
Le 02/01/2014 20:22, VonZorch a écrit : > Running Mint 16, in console as root. When I enter ./configure it returns "No > such file or directory". > What do I need to do here. > Everything is explained in the 'INSTALL.html' file. You can get the latest version of that file on gambasdoc.org, but i

[Gambas-user] Can't compile 3.5.2

2014-01-02 Thread VonZorch
Running Mint 16, in console as root. When I enter ./configure it returns "No such file or directory". What do I need to do here. -- View this message in context: http://gambas.8142.n7.nabble.com/Can-t-compile-3-5-2-tp44968.html Sent from the gambas-user mailing list archive at Nabble.com. ---

Re: [Gambas-user] Where did the Help Files Go?

2014-01-02 Thread Benoît Minisini
Le 02/01/2014 20:06, VonZorch a écrit : > Where are there english help files? Gambasdocs.org has been down since mid > September. > gambasdoc.org seems to not be accessible from all DNS. Try the IP address: http://64.128.110.55 Or try to change your DNS, maybe it could help. Regards, -- Beno

Re: [Gambas-user] Where did the Help Files Go?

2014-01-02 Thread Tobias Boege
On Thu, 02 Jan 2014, VonZorch wrote: > Where are there english help files? Gambasdocs.org has been down since mid > September. > You should look at gambasdoc.org (without the "s"). -- "There's an old saying: Don't change anything... ever!" -- Mr. Monk -

[Gambas-user] Where did the Help Files Go?

2014-01-02 Thread VonZorch
Where are there english help files? Gambasdocs.org has been down since mid September. -- View this message in context: http://gambas.8142.n7.nabble.com/Where-did-the-Help-Files-Go-tp44965.html Sent from the gambas-user mailing list archive at Nabble.com. --

Re: [Gambas-user] svn build problem 6035

2014-01-02 Thread Kende Krisztián
2014-01-01 00:22 keltezéssel, Kende Krisztián írta: > 2013-12-30 23:51 keltezéssel, Kendek írta: >> I confirm this. Build log on Ubuntu 14.04 with GTK+3 3.10.6: >> >> https://launchpadlibrarian.net/161114453/buildlog_ubuntu-trusty-amd64.gambas3_3.5.99.1%2Bsvn20131230%2Bbuild7~ubuntu14.04.1_FAILEDTO