Re: [Gambas-user] Comments at wiki like PHP site

2011-07-17 Thread Benoît Minisini
> hi, > > is it possible to extend wiki documentation with user comments like PHP > documentation? > > see for example > http://www.php.net/manual/en/language.types.php > http://www.php.net/manual/en/language.functions.php Yes, it would be cool. I note that in the TODO list. -- Benoît Minisini

Re: [Gambas-user] Application_Read

2011-07-17 Thread Benoît Minisini
> ok i change some things > > the implementation is this > > - > Public Sub _new() > > Print "My pid is: " & Application.Handle > > End > > Static Public Sub Application_Read() > > Print "ok" > > End > - > > 1) Problem #1, if i do > echo 'test' >

Re: [Gambas-user] Application_Read

2011-07-17 Thread Benoît Minisini
> i have an application who reads the data from stdin with > Application_Read > > the implementation is > > -- > Public Sub Application_Read() > > Line Input txtArea.Text > > End > - > > i try to send data to the running process with > echo xxx > /proc/7417/fd/0 > > where 74

Re: [Gambas-user] gambas3 IDE bug

2011-07-17 Thread Charlie Reinl
Am Sonntag, den 17.07.2011, 20:10 +0200 schrieb Benoît Minisini: > > Salut, > > > > when I create a new form, switch to existent tab and get a gambas2 form. > > that form can't be shown in the IDE, and when you close the IDE or > > project, without deleting that form, you can't open the project an

Re: [Gambas-user] gambas3 IDE bug

2011-07-17 Thread Benoît Minisini
> Salut, > > when I create a new form, switch to existent tab and get a gambas2 form. > that form can't be shown in the IDE, and when you close the IDE or > project, without deleting that form, you can't open the project anymore. I don't really understand. Can you be more precise? -- Benoît Min

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

2011-07-17 Thread gambas
Comment #7 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 work with svn version but i think the bug is in relation with ubuntu natty's gnome version. I try with other ubuntu and i see what happens. -

[Gambas-user] gambas3 IDE bug

2011-07-17 Thread Karl Reinl
Salut, when I create a new form, switch to existent tab and get a gambas2 form. that form can't be shown in the IDE, and when you close the IDE or project, without deleting that form, you can't open the project anymore. -- Amicalement Charlie

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

2011-07-17 Thread gambas
Comment #6 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 try with the svn if you can please -- AppSumo Presents a FREE Video for the Sou

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

2011-07-17 Thread gambas
Comment #5 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 are you on the last svn or rc release ? -- AppSumo Presents a FREE Video for th

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

2011-07-17 Thread gambas
Comment #4 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 I can't reproduce your bug ... the reportexemple work fine in gb.gtk as in gb.qt4 can you send me an unworking exemple ? -

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

2011-07-17 Thread gambas
Comment #3 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 Sorry but my english is not good. I will try to make me understand The problem is that the report component is not working fine. if i use gb.qt4 in place

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

2011-07-17 Thread gambas
Comment #2 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 i need an example project to debug ! you can send it directly to me. and can you be more precise on the problems -

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

2011-07-17 Thread gambas
Updates: Status: NeedsInfo Comment #1 on issue 74 by benoit.m...@gmail.com: printer error with gb.report and gb.qt http://code.google.com/p/gambas/issues/detail?id=74 I understand nothing in your bug report. Please try to polish it, and give the needed information as specified in the

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

2011-07-17 Thread gambas
Status: New Owner: Labels: Version Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 74 by flynetin...@gmail.com: printer error with gb.report and gb.qt http://code.google.com/p/gambas/issues/detail?id=74 when i try report generate everything work perfect

Re: [Gambas-user] Checking whether a file exists

2011-07-17 Thread Benoît Minisini
> > It is backward compatible with the old syntax. > > Oops. The syntax is compatible, but not the bytecode. I will update the > bytecode version, and all projects will have to be recompiled. > > Regards, I found a trick in revision #3941, and no recompilation is needed anymore. New Exist() is

Re: [Gambas-user] Checking whether a file exists

2011-07-17 Thread Benoît Minisini
> > It is backward compatible with the old syntax. > Oops. The syntax is compatible, but not the bytecode. I will update the bytecode version, and all projects will have to be recompiled. Regards, -- Benoît Minisini ---

Re: [Gambas-user] Checking whether a file exists

2011-07-17 Thread Benoît Minisini
> hi, > > in a project, i am searching directories recursively and opening files > to search their content, too. > while searching in the gambas2 sources my program crashed with "File or > directory doesn't exist". so i noticed this one > > ? sFile > ".../main/ltmain.sh" > ? Exist(sFile) > True >