Re: [Gambas-user] Tasks

2014-01-29 Thread Fabien Bodard
Ok thank you ... i will investigate :/... 2014-01-29 Benoît Minisini : > Le 28/01/2014 13:26, Fabien Bodard a écrit : >> Hi Benoit, >> >> I'm currently working on a new viewer for reports. As drawing report in >> real time is quite long, I use images stored in a collection to have a >> buffer. >>

Re: [Gambas-user] Issue 505 in gambas: Provide a way to add manpages to generated installation packages

2014-01-29 Thread gambas
Updates: Labels: -Version -Type-Bug Version-TRUNK Type-Enhancement Comment #1 on issue 505 by benoit.m...@gmail.com: Provide a way to add manpages to generated installation packages http://code.google.com/p/gambas/issues/detail?id=505 (No comment was entered for this change.) -- You r

Re: [Gambas-user] Issue 506 in gambas: Make Install Error in LCDLabel Class

2014-01-29 Thread gambas
Updates: Status: Fixed Labels: -OpSys-Reshat OpSys-Linux Comment #1 on issue 506 by benoit.m...@gmail.com: Make Install Error in LCDLabel Class http://code.google.com/p/gambas/issues/detail?id=506 Fixed in revision #6114. -- You received this message because this project is co

Re: [Gambas-user] Tasks

2014-01-29 Thread Benoît Minisini
Le 28/01/2014 13:26, Fabien Bodard a écrit : > Hi Benoit, > > I'm currently working on a new viewer for reports. As drawing report in > real time is quite long, I use images stored in a collection to have a > buffer. > > I have trying to use task to process the painting of the report on an image >

Re: [Gambas-user] Stream.EndOfLine (gb)

2014-01-29 Thread wally
Fabian, thx, but i need for READ WATCH. The inot is separated bei 0xAA I will detect this bei code. On 01/29/2014 10:40 AM, Fabien Bodard wrote: > No > > Dim hfile as File > > hFile = open MyFile for write > for i = 1 to 200 > Write #hFile, sValue & chr(170) > next > > hFile.Close > > End > > 2

Re: [Gambas-user] Stream.EndOfLine (gb)

2014-01-29 Thread Fabien Bodard
No Dim hfile as File hFile = open MyFile for write for i = 1 to 200 Write #hFile, sValue & chr(170) next hFile.Close End 2014-01-29 wally : > Hi, > > is there a way to set a custom EndOfLine ? > > e.g. &hAA / Chr$(170) > > wally > > > from Docs: > > Stream.EndOfLine (gb) > > Property *End

[Gambas-user] Stream.EndOfLine (gb)

2014-01-29 Thread wally
Hi, is there a way to set a custom EndOfLine ? e.g. &hAA / Chr$(170) wally from Docs: Stream.EndOfLine (gb) Property *EndOfLine* As Integer Returns or sets the newline separator used by this stream . The possible values are: * gb.Unix