[Gambas-user] Search/Replace issue with IDE

2014-12-20 Thread Francis Payne
I seem to have found a search/replace problem with the IDE in 3.5.2 If you search for a string and replace it with a zero length string (basically remove the search string) the results are unpredictable. I found this out while converting a VB program = a mass replace of CASE IS = val to CASE v

[Gambas-user] Fwd: Scanner problems

2014-12-20 Thread Fabien Bodard
-- Forwarded message -- From: Fabien Bodard Date: 2014-12-21 0:22 GMT+01:00 Subject: Re: Scanner problems To: Jørn Erik Mørne 2014-12-21 0:20 GMT+01:00 Fabien Bodard : > Private hSCan As Scanner > > > Public Sub main() > > > Dim s As String > > hSCan = New Scanner("v4l:/dev/

[Gambas-user] Issue 590 in gambas: Error in the keypress event

2014-12-20 Thread gambas
Status: New Owner: Labels: Version Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 590 by flynetin...@gmail.com: Error in the keypress event https://code.google.com/p/gambas/issues/detail?id=590 __

Re: [Gambas-user] Issue 575 in gambas: Clipboard change

2014-12-20 Thread gambas
Updates: Status: Fixed Comment #8 on issue 575 by benoit.m...@gmail.com: Clipboard change https://code.google.com/p/gambas/issues/detail?id=575 (No comment was entered for this change.) -- You received this message because this project is configured to send all issue notifications to

Re: [Gambas-user] Issue 575 in gambas: Clipboard change

2014-12-20 Thread gambas
Comment #7 on issue 575 by flynetin...@gmail.com: Clipboard change https://code.google.com/p/gambas/issues/detail?id=575 for now would seem to be functioning properly thanks -- You received this message because this project is configured to send all issue notifications to this address. You ma

Re: [Gambas-user] New features on the wiki

2014-12-20 Thread Tobias Boege
On Mon, 08 Dec 2014, Beno?t Minisini wrote: > Le 06/12/2014 14:25, Tobias Boege a ?crit : > > On Thu, 13 Nov 2014, Tobias Boege wrote: > >>> No, the source tree may not beavailable on the wiki, only the *.info > >>> files. > >>> > >>> Why not adding an optional "*.help" file that would come with t

[Gambas-user] gb.pcre: RegExp.Replace() problem

2014-12-20 Thread Tobias Boege
Hi, attached is a script which essentially executes Print RegExp.Replace(" * * a *", "^[ ]*\\*", "'") On my system the output is '' a * which I don't understand. As the regular expression indicates I want only the one match at the beginning of the line to be replaced. Not the second one be