[Gambas-user] Issue 185 in gambas: Editing a line changes font spacing

2012-01-07 Thread gambas
Status: New Owner: Labels: Version Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 185 by zachsmit...@gmail.com: Editing a line changes font spacing http://code.google.com/p/gambas/issues/detail?id=185 1) Describe the problem. When editing any line, the

Re: [Gambas-user] Issue 130 in gambas: Undo / Redo in the form editor

2012-01-07 Thread gambas
Updates: Status: Started Labels: -Priority-Low Priority-Medium Comment #2 on issue 130 by benoit.m...@gmail.com: Undo / Redo in the form editor http://code.google.com/p/gambas/issues/detail?id=130 (No comment was entered for this change.) --

Re: [Gambas-user] Issue 184 in gambas: Gambas3 ide cannot reset/delete choosed font to default/empty font... on controls

2012-01-07 Thread gambas
Updates: Status: WontFix Labels: -Version Version-TRUNK Comment #1 on issue 184 by benoit.m...@gmail.com: Gambas3 ide cannot reset/delete choosed font to default/empty font... on controls http://code.google.com/p/gambas/issues/detail?id=184 To restore the Font property to its de

Re: [Gambas-user] Issue 183 in gambas: Install Gambas 3 on Mandriva 2011.2

2012-01-07 Thread gambas
Updates: Status: WontFix Labels: -Version Version-TRUNK Comment #1 on issue 183 by benoit.m...@gmail.com: Install Gambas 3 on Mandriva 2011.2 http://code.google.com/p/gambas/issues/detail?id=183 You must install autoconf, libtool and all needed development packages. --

Re: [Gambas-user] Issue 182 in gambas: Rmdir should have an error code to report the deletion of a folder with content

2012-01-07 Thread gambas
Updates: Status: Accepted Labels: -Version -Type-Bug Version-TRUNK Type-Enhancement Comment #1 on issue 182 by benoit.m...@gmail.com: Rmdir should have an error code to report the deletion of a folder with content http://code.google.com/p/gambas/issues/detail?id=182 (No comment

Re: [Gambas-user] Issue 181 in gambas: Crash with certain menu caption.

2012-01-07 Thread gambas
Updates: Status: NeedsInfo Labels: -Version -Type-Bug Version-TRUNK Type-Crash Comment #1 on issue 181 by benoit.m...@gmail.com: Crash with certain menu caption. http://code.google.com/p/gambas/issues/detail?id=181 I cannot reproduce the crash: the project works as expected on m

[Gambas-user] Upgraded to 3.0.0, Serial port example no longer works

2012-01-07 Thread pf
Hi I upgraded to 3.0.0 The serial port example doesnt work anymore. When i get input on the serial port i stops with an error. Public Sub SPort_Read() Dim s As String Read #Sport, s, Lof(Sport) ' At this line i get an error saying: End of file in FSerialPort:53 TextArea

[Gambas-user] reconf-all error in Linux Mint 12

2012-01-07 Thread tommyline
Hi group! I have just installed Linux Mint 12 32bit, and tried to install Gambas3 ver. 4393. Can't go through reconf-all. Older version did reconf and configure, but with missing dependencies, which are difficult to solve with Gnome 3. reconf-all output: libtoolize: putting auxiliary files i

[Gambas-user] What is the difference between classes Draw and Paint?

2012-01-07 Thread Алексей Беспалов
Please tell me. What is the difference between classes Draw and Paint? Paint.DrawImage(hImage, 0, 0) and Draw.Image(hImage, 0, 0) gives the same result? Thanks. -- Alexey. -- Ridiculously easy VDI. With Citrix VDI-in-a-

Re: [Gambas-user] gb.qt4.ext dial marks ?

2012-01-07 Thread Wally
OK, found the reason. Tickmarks are not shown in "Oxygen" but e.g. in "Plastique" -style No Gambas problem, sorry :) On Saturday, January 07, 2012 08:34:48 Wally wrote: > Hello > > Gambas3 on OpenSuse 12.1 > gambas svn evision 4393 > libqt4 version 4.7.4 > > Slider1.Mark = TRUE --> displays

Re: [Gambas-user] Another basics

2012-01-07 Thread Randall Morgan
LyX is built on Latex and LeX and is a powerful editor for handling Latex documents. The book is intended to be a static document and will be released as such. Call me old fashioned but I see a place for both static and dynamic documents. Static documents can always be referred back to for informa

Re: [Gambas-user] Running programs from terminal and by double clicking.

2012-01-07 Thread Benoît Minisini
Le 07/01/2012 15:14, Jussi Lahtinen a écrit : >> The bug should be fixed in revision #4392. >> > > > Confirmed. > However the fix caused some changes, earlier only control character \n was > received, now there is \r also. > But I don't think this matters, it is just something to be taken into > co

Re: [Gambas-user] chmod?

2012-01-07 Thread tobias
bbr...@paddys-hill.net wrote: > Quoting tobias : > >> hi, >> >> i can't find any interface (except Extern or Exec) to chmod(2) in >> gambas. is there one? i think there should... >> >> regards, >> tobi > > I was going to say Stat.Perm but I had never realized that it is read only. > I agree that

Re: [Gambas-user] Another basics

2012-01-07 Thread Dmitrij Malkov
> I've been writing a book on Gambas. This is great deal. > I've been writing this using Lyx but will post it on the web. Maybe LaTeX is better? I can convert It to LaTeX if you want. > So any help in correcting them and any technical direction would be nice. Books written by the community o

Re: [Gambas-user] Running programs from terminal and by double clicking.

2012-01-07 Thread Jussi Lahtinen
> The bug should be fixed in revision #4392. > Confirmed. However the fix caused some changes, earlier only control character \n was received, now there is \r also. But I don't think this matters, it is just something to be taken into consideration. Jussi

Re: [Gambas-user] The good old tar-1.13 is still an obstacle

2012-01-07 Thread Matteo Pasotti
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Il 06/01/2012 19:21, M. Cs. ha scritto: > Hello Benoit! > Your method doesn't work on Kubuntu 11.10. I simply cannot create > Slackware package with IDE. Any other solution? > > Csaba > I've installed tar-1.13 (starting from sources) into a differen

Re: [Gambas-user] File opening dialog and one more question

2012-01-07 Thread Dmitrij Malkov
I add a new class, child to CUnit. I named It "CUnitChild". It's code: -- ' Gambas class file Inherits CUnit -- And I add creation on object of this class in the middle of MMain: ---