Re: [Gambas-user] Issue 188 in gambas: Creating a new directory in the data project data causes a seg. fault

2012-01-27 Thread gambas
Comment #14 on issue 188 by benoit.m...@gmail.com: Creating a new directory in the data project data causes a seg. fault http://code.google.com/p/gambas/issues/detail?id=188 There are a lot of strangeness I will look at. But the crash seems to occur in QGtkStyle, so I think there is a problem

Re: [Gambas-user] Issue 188 in gambas: Creating a new directory in the data project data causes a seg. fault

2012-01-27 Thread gambas
Comment #13 on issue 188 by benoit.m...@gmail.com: Creating a new directory in the data project data causes a seg. fault http://code.google.com/p/gambas/issues/detail?id=188 There are a lot of strangeness I will look at. But the crash seems occur in QGtkStyle, so I think there is a problem in

Re: [Gambas-user] Issue 188 in gambas: Creating a new directory in the data project data causes a seg. fault

2012-01-27 Thread gambas
Comment #12 on issue 188 by zachsmit...@gmail.com: Creating a new directory in the data project data causes a seg. fault http://code.google.com/p/gambas/issues/detail?id=188 Sorry, they were stripped when Arch was building the package. Attached. Attachments: valgrind.out 68.7 KB --

Re: [Gambas-user] On-Off Visible DrawingArea. Bag?

2012-01-27 Thread Benoît Minisini
Le 26/01/2012 05:58, Алексей Беспалов a écrit : > Hi! > > Please see the example. > > I am Draw the image in DrawingArea. > After doing this DrawingArea1.Visible = False. Picture not visible. > After DrawingArea1.Visible = True, the picture not see until you do > scrolling. > > DrawingArea1.Ref

Re: [Gambas-user] Issue 188 in gambas: Creating a new directory in the data project data causes a seg. fault

2012-01-27 Thread gambas
Comment #11 on issue 188 by benoit.m...@gmail.com: Creating a new directory in the data project data causes a seg. fault http://code.google.com/p/gambas/issues/detail?id=188 According to your valgrind log, gambas was obviously not compiled with debugging information enabled. Did you really re

Re: [Gambas-user] Issue 205 in gambas: Desktop.Height <> Screen.AvailableHeight

2012-01-27 Thread gambas
Updates: Status: Fixed Labels: -Version Version-TRUNK Comment #2 on issue 205 by benoit.m...@gmail.com: Desktop.Height <> Screen.AvailableHeight http://code.google.com/p/gambas/issues/detail?id=205 It should be fixed in revision #4423. -

Re: [Gambas-user] (no subject)

2012-01-27 Thread Benoît Minisini
Le 27/01/2012 11:36, Andreas Fröhlke a écrit : > Hi again, > > thanks for the solution for question 1. I think i don't understood how the > parameters padding, margin and spacing work in gambas3. Now i understood and > it's fine :) > > 2. I've made a 2 screenshots of the same program in gambas3 a

Re: [Gambas-user] Code Folding Issue when used with 'Format page'

2012-01-27 Thread Benoît Minisini
Le 27/01/2012 06:05, Ian Roper a écrit : > Greetings, > I have found that if the last routine in the editor code display is > 'folded' and you select the format option from a right click in the > editor (or Ctl-Alt-F), then the last routine is duplicated. > > I have had this confirmed by another us

Re: [Gambas-user] limit of situated of form

2012-01-27 Thread abbat
No, I mean another thing. Pushing F5 FMain must be situated into panel (image_2), but it shows wherever, only not into panel (image_1). I'm trying to make a form like clock and flag and situate FNain near them. Something, like this: http://old.nabble.com/file/p33216763/322c1b68a634.jpg Tnanks.

Re: [Gambas-user] limit of situated of form

2012-01-27 Thread Matti
Me.TopOnly = True Me.X = 880 Me.Y = Desktop.Height - Me.Height - 26 works fine here. Am 27.01.2012 20:18, schrieb abbat: > > limit of situated of form > > How to free situating of a form on screen > > My Desktop.Height = 900 (shows 876, panal takes 26 px.H) > In property of situating of

[Gambas-user] limit of situated of form

2012-01-27 Thread abbat
limit of situated of form How to free situating of a form on screen My Desktop.Height = 900 (shows 876, panal takes 26 px.H) In property of situating of form I have next: Fmain.TopOnly = True Fmain.X = 880 Fmain.Y = 880 http://old.nabble.com/file/p33213549/image_1.png I want form to be above

Re: [Gambas-user] ARRAYS - Filling with data

2012-01-27 Thread Emil Lenngren
Maybe you can use this to efficiently store and read the array from a file? http://gambasdoc.org/help/lang/datarep?v3 2012/1/27 Jussi Lahtinen > Just use IDE to create/move file to Data folder. > You can access to it like any file by referring to it's name, but without > path, example "myfile.tx

Re: [Gambas-user] Issue 205 in gambas: Desktop.Height <> Screen.AvailableHeight

2012-01-27 Thread gambas
Comment #1 on issue 205 by jussi.la...@gmail.com: Desktop.Height <> Screen.AvailableHeight http://code.google.com/p/gambas/issues/detail?id=205 Bug happens only if gb.desktop component is used! -- Try before you buy =

Re: [Gambas-user] ARRAYS - Filling with data

2012-01-27 Thread Jussi Lahtinen
Just use IDE to create/move file to Data folder. You can access to it like any file by referring to it's name, but without path, example "myfile.txt". If you use subfolders in Data, then use "myfolder/myfile.txt". Jussi On Fri, Jan 27, 2012 at 14:23, rogerHPH wrote: > > Thanks, the .Insert w

[Gambas-user] Issue 205 in gambas: Desktop.Height <> Screen.AvailableHeight

2012-01-27 Thread gambas
Status: New Owner: Labels: Version Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 205 by jussi.la...@gmail.com: Desktop.Height <> Screen.AvailableHeight http://code.google.com/p/gambas/issues/detail?id=205 1) Describe the problem. Print Screen.Height

Re: [Gambas-user] How to know Height and Width of screen?

2012-01-27 Thread Jussi Lahtinen
Screen.Height should return the actual screen height. Jussi On Fri, Jan 27, 2012 at 12:13, abbat wrote: > > This works, but it is WORKAREA. > If my resolutions is 1280 x 1024 and panel has 26 px and situated below, > Then Desktop.Height = (1024-26) > > > Benoît Minisini wrote: > > > > Le 23/0

Re: [Gambas-user] ARRAYS - Filling with data

2012-01-27 Thread rogerHPH
Thanks, the .Insert works fine and I will investigate the /Data approach - can anyone offer an example ? -- View this message in context: http://old.nabble.com/Re%3A-ARRAYS---Filling-with-data-tp33208699p33213528.html Sent from the gambas-user mailing list archive at Nabble.com. --

Re: [Gambas-user] Fwd: Component Config error

2012-01-27 Thread Wally
Same problem here :( OpenSuse 12.1 Gambas SVNAt revision 4421. wally On Friday, January 27, 2012 03:12:47 Randall Morgan wrote: > Hi, > > Using the configuration generated by the make-component script I get a > failed configure in my component directory. > I have read the readme and the

[Gambas-user] Fwd: Component Config error

2012-01-27 Thread Randall Morgan
Hi, Using the configuration generated by the make-component script I get a failed configure in my component directory. I have read the readme and the install docs as well as reviewed the wiki pages and have failed to find a solution. I am including the config log for your review. Any help you ca

Re: [Gambas-user] (no subject)

2012-01-27 Thread Andreas Fröhlke
Hi again, thanks for the solution for question 1. I think i don't understood how the parameters padding, margin and spacing work in gambas3. Now i understood and it's fine :) 2. I've made a 2 screenshots of the same program in gambas3 and gambas2, so i hope you see what i mean. Regards Andre

Re: [Gambas-user] How to know Height and Width of screen?

2012-01-27 Thread abbat
This works, but it is WORKAREA. If my resolutions is 1280 x 1024 and panel has 26 px and situated below, Then Desktop.Height = (1024-26) Benoît Minisini wrote: > > Le 23/01/2012 12:32, abbat a écrit : >> >> >> in VB.NET I get it by this way: >> >> Dim yy As Integer = >> System.Windows.Forms.Sc