Re: [Gambas-user] Issue 74 in gambas: printer error with gb.report and gb.qt

2011-12-01 Thread gambas
Comment #17 on issue 74 by gambas...@gmail.com: printer error with gb.report and gb.qt http://code.google.com/p/gambas/issues/detail?id=74 send me your project please or a project that show the bug -- All the data con

Re: [Gambas-user] Issue 74 in gambas: printer error with gb.report and gb.qt

2011-12-01 Thread gambas
Comment #16 on issue 74 by flynetin...@gmail.com: printer error with gb.report and gb.qt http://code.google.com/p/gambas/issues/detail?id=74 I think one of the problems presented in the clone method. When you request a new report, if it receives a parameter the clone method does not cover it

Re: [Gambas-user] Issue 153 in gambas: gambas3 segfault creating new postgresql connection inside gambas ide

2011-12-01 Thread gambas
Comment #2 on issue 153 by jussi.la...@gmail.com: gambas3 segfault creating new postgresql connection inside gambas ide http://code.google.com/p/gambas/issues/detail?id=153 Does this crash occur with different database? Is it possible to create little database for test purpose that will cause

Re: [Gambas-user] Issue 153 in gambas: gambas3 segfault creating new postgresql connection inside gambas ide

2011-12-01 Thread gambas
Comment #1 on issue 153 by marcobra...@gmail.com: gambas3 segfault creating new postgresql connection inside gambas ide http://code.google.com/p/gambas/issues/detail?id=153 i'm ready to send valgrind report here but is my very first time and i need some basic instructions to launch it on gamb

[Gambas-user] Issue 153 in gambas: gambas3 segfault creating new postgresql connection inside gambas ide

2011-12-01 Thread gambas
Status: New Owner: Labels: Version Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 153 by marcobra...@gmail.com: gambas3 segfault creating new postgresql connection inside gambas ide http://code.google.com/p/gambas/issues/detail?id=153 1) Describe the p

Re: [Gambas-user] Display of fonts differs (Gambas2)

2011-12-01 Thread Fabien Bodard
hum an antialiasing problem ! 2011/12/1 Rolf-Werner Eilert : > I just stumbled over this little "feature" ;-) Maybe qt is to blame: > > When I use the same font in the editor and on a TextLabel, the TextLabel > shows the font less nice. I include a screenshot, hope it gets through. > > As you can

[Gambas-user] Display of fonts differs (Gambas2)

2011-12-01 Thread Rolf-Werner Eilert
I just stumbled over this little "feature" ;-) Maybe qt is to blame: When I use the same font in the editor and on a TextLabel, the TextLabel shows the font less nice. I include a screenshot, hope it gets through. As you can see, the "(" and ")" look better in the editor. And the "" should be

Re: [Gambas-user] What's faster: RegExp or String function

2011-12-01 Thread Rolf-Werner Eilert
This one is ideal for my current project. In my eyes, it is very elegant. > > i=Instr(s,"<") > while i> 0 > j=InStr(s,">", i) > cut out from s the substring from i to j > i=Instr(s,"<") > wend I made a function out of it and cut the strings with String.Left and String.Mid, just