Re: [Gambas-user] Question about libraries and components

2015-03-12 Thread Benoît Minisini
Le 12/03/2015 21:51, Charlie Reinl a écrit : > Salut Benoît, > > I have a library where I use the ToolBar and ToolButtons, now the > project which uses this library claims "the class ToolBar could not be > loaded" if I call the form with the toolbar. > > Q: is that behave normal? > > Sorry, I poste

[Gambas-user] Question about libraries and components

2015-03-12 Thread Charlie Reinl
Salut Benoît, I have a library where I use the ToolBar and ToolButtons, now the project which uses this library claims "the class ToolBar could not be loaded" if I call the form with the toolbar. Q: is that behave normal? Sorry, I posted the same mail with a wrong subject. -- Amicalement Charl

Re: [Gambas-user] ToolButton.Visible can't be set

2015-03-12 Thread Charlie Reinl
Am Donnerstag, den 12.03.2015, 18:53 +0100 schrieb Benoît Minisini: > Le 12/03/2015 17:58, Charlie Reinl a écrit : > > Salut Benoît, > > > > ToolButton.Visible can't be set to false by code. > > > > see attached project. > > > > You are using a ToolBar, and ToolBar manages the visibility of its

Re: [Gambas-user] ToolButton.Visible can't be set

2015-03-12 Thread Benoît Minisini
Le 12/03/2015 17:58, Charlie Reinl a écrit : > Salut Benoît, > > ToolButton.Visible can't be set to false by code. > > see attached project. > You are using a ToolBar, and ToolBar manages the visibility of its ToolButtons behind the curtain (it loads its settings after the Form_Load function ha

[Gambas-user] ToolButton.Visible can't be set

2015-03-12 Thread Charlie Reinl
Salut Benoît, I have a library where I use the ToolBar and ToolButtons, now the project which uses this library claims "the class ToolBar could not be loaded" if I call the form with the toolbar. Q: is that behave normal?

[Gambas-user] ToolButton.Visible can't be set

2015-03-12 Thread Charlie Reinl
Salut Benoît, ToolButton.Visible can't be set to false by code. see attached project. LETS_see-0.0.1.tar.gz Description: application/compressed-tar -- Dive into the World of Parallel Programming The Go Parallel Website

Re: [Gambas-user] gb.scanner

2015-03-12 Thread Fabien Bodard
Hi ron Pretty piece of code :-) gb.scanner is based on scanimage too. It just give an object oriented simplified interface. Thank you for sharing your code, and you are welcome to help me to inprove gb.scanner if you have some time to share :-). It miss multipages, preview and surely many other

Re: [Gambas-user] Problem with Exist & Open functions with filename containing spaces

2015-03-12 Thread Benoît Minisini
Le 12/03/2015 13:11, John Rose a écrit : > On 12/03/15 11:38, Tobias Boege wrote: >> On Thu, 12 Mar 2015, John Rose wrote: >>> On 12/03/15 10:37, Tobias Boege wrote: Public Sub Main() Dim sPath As String = Temp$("with spaces") Dim hFile As Stream Dim sLine As String >>>

Re: [Gambas-user] Problem with Exist & Open functions with filename containing spaces

2015-03-12 Thread John Rose
On 12/03/15 11:38, Tobias Boege wrote: > On Thu, 12 Mar 2015, John Rose wrote: >> On 12/03/15 10:37, Tobias Boege wrote: >>> Public Sub Main() >>> Dim sPath As String = Temp$("with spaces") >>> Dim hFile As Stream >>> Dim sLine As String >>> >>> File.Save(sPath, "some string") >>> >>> Deb

Re: [Gambas-user] Problem with Exist & Open functions with filename containing spaces

2015-03-12 Thread Tobias Boege
On Thu, 12 Mar 2015, John Rose wrote: > On 12/03/15 10:37, Tobias Boege wrote: > > Public Sub Main() > > Dim sPath As String = Temp$("with spaces") > > Dim hFile As Stream > > Dim sLine As String > > > > File.Save(sPath, "some string") > > > > Debug "Path =";; sPath > > Debug "Exist =";

Re: [Gambas-user] Problem with Exist & Open functions with filename containing spaces

2015-03-12 Thread John Rose
On 12/03/15 10:37, Tobias Boege wrote: > Public Sub Main() > Dim sPath As String = Temp$("with spaces") > Dim hFile As Stream > Dim sLine As String > > File.Save(sPath, "some string") > > Debug "Path =";; sPath > Debug "Exist =";; Exist(sPath) > Debug "Content =" > hFile = Open sPat

Re: [Gambas-user] Problem with Exist & Open functions with filename containing spaces

2015-03-12 Thread Tobias Boege
On Thu, 12 Mar 2015, Tobias Boege wrote: > [...] attached script [...] > This time! -- "There's an old saying: Don't change anything... ever!" -- Mr. Monk #!/usr/bin/gbs3 Public Sub Main() Dim sPath As String = Temp$("with spaces") Dim hFile As Stream Dim sLine As String File.Save(sPa

Re: [Gambas-user] Problem with Exist & Open functions with filename containing spaces

2015-03-12 Thread Tobias Boege
On Thu, 12 Mar 2015, John Rose wrote: > I have coding of: > sPlainPath = User.Home &/ "plain out" > Print "PlainPath=" & sPlainPath > If Exist(sPlainPath) Then > Print sPlainPath & " exists" > Else > Print sPlainPath & " does not exist" > Endif > hPlain = Open sPlainPath For Inp

Re: [Gambas-user] Random access files with fixed-length string

2015-03-12 Thread Gian
Il 11/03/2015 14:12, Tobias Boege ha scritto: > Looks good. But, as you mentioned in the project description, it would also > be possible, and easier, to use Structs, as we did[0]. > [0] http://gambaswiki.org/wiki/app/struct-db Great Tobias, perhaps beginning to see the light. :) I continue to s

[Gambas-user] Problem with Exist & Open functions with filename containing spaces

2015-03-12 Thread John Rose
I have coding of: sPlainPath = User.Home &/ "plain out" Print "PlainPath=" & sPlainPath If Exist(sPlainPath) Then Print sPlainPath & " exists" Else Print sPlainPath & " does not exist" Endif hPlain = Open sPlainPath For Input While Not Eof(hPlain) Line Input #hPlain, sLine

Re: [Gambas-user] gb.scanner

2015-03-12 Thread Johny Provoost
Thank you Ron. Will look in to it. Regards Johny Op 11-03-15 om 21:02 schreef Ron: > Here a cleanup of an already existing Gambas Scanner app using > scanimage cli command I use regularly. > https://github.com/cyberjunky/gbscan/ > > It does all the option parsing from cli output... > > Maybe we c

Re: [Gambas-user] gb.scanner

2015-03-12 Thread Johny Provoost
Op 11-03-15 om 19:10 schreef Fabien Bodard: > Le 11 mars 2015 17:59, "Johny Provoost" a écrit : >> Hello, >> >> Is there's some place where I can get some more help about gb.scanner. >> The help in Gambas doesn't show much. >> >> I'll tried >> >> Public Sub Button1_Click() >> Dim HPScan As

Re: [Gambas-user] Top posting

2015-03-12 Thread Jussi Lahtinen
> Even if Gmail is an ideal solution, I'd like a more > "universal" solution that isn't tied to one company's whims and IP. It > does sound like Google has a handle on how things should be done; > perhaps they could lead the charge to revolutionize email. > I agree. But at least google offers thei

Re: [Gambas-user] Top posting

2015-03-12 Thread Tobias Boege
On Wed, 11 Mar 2015, Fabien Bodard wrote: > Le 11 mars 2015 08:37, "Rolf-Werner Eilert" a > ??crit : > > If someone introduced a new mail text protocol, this might be done with > > tags similar to html. This would leave the text readable in text-only > > mail clients or for the case something gets

Re: [Gambas-user] Pre-release of Gambas 3.7 (2)

2015-03-12 Thread Gian
Il 11/03/2015 15:43, Benoît Minisini ha scritto: Le 11/03/2015 10:32, Gian a écrit : Il 11/03/2015 00:17, Benoît Minisini ha scritto: Le 11/03/2015 00:03, Jussi Lahtinen a écrit : Exactly. Only Emil can confirm, as I don't have enough knowledge about that, but apparently there is no way to mak

[Gambas-user] Problem with gb.report

2015-03-12 Thread herberth guzman
Hi Fabien I am using 3.6.99+svn6974 the first message you send is as follows unable to load image. cfamilyreport.drawcontrol.384 the current message says [12] Not an object. FamilyReport.DrawControl.391 Regards. Even on th? last version ? > Salut Fabien > > I have the following problem w

Re: [Gambas-user] Pre-release of Gambas 3.7 (2)

2015-03-12 Thread Benoît Minisini
Le 10/03/2015 22:10, Jussi Lahtinen a écrit : >> Apparently llvm 3.6 drops the JIT interface of previous llvm versions. >> For no reason, at least in their changelog. >> >> It's cool that LLVM allowed Emil to write a JIT compiler for Gambas. >> Otherwise the more I look at it, the less I like it...

Re: [Gambas-user] Pre-release of Gambas 3.7 (2)

2015-03-12 Thread Benoît Minisini
Le 10/03/2015 16:59, Laurent Carlier a écrit : > Le mardi 10 mars 2015, 16:49:58 Benoît Minisini a écrit : >> Hi, >> >> I have uploaded a new version of the source package at the same place, >> with (normally) all reported bugs fixed. >> >> Please test it and tell me if you still have problems! >>

[Gambas-user] gb.scanner

2015-03-12 Thread Johny Provoost
Hello, Is there's some place where I can get some more help about gb.scanner. The help in Gambas doesn't show much. I'll tried Public Sub Button1_Click() Dim HPScan As Image Dim MyScan As Scanner Scanners.Search MyScan.Scan(HPScan) End scanners.search find my scanner (see in the t

Re: [Gambas-user] Pre-release of Gambas 3.7 (2)

2015-03-12 Thread emanuele sottocorno
Correctly installed on my Ubuntu 14.04.2 System Information attached FYI 2015-03-10 16:59 GMT+01:00 Laurent Carlier : > Le mardi 10 mars 2015, 16:49:58 Benoît Minisini a écrit : > > Hi, > > > > I have uploaded a new version of the source package at the same place, > > with (normally) all reporte

Re: [Gambas-user] Change value shown in Tray Icon

2015-03-12 Thread bill-lancaster
My mistake was to use a .png file instead of an image value. It's working fine now Thanks -- View this message in context: http://gambas.8142.n7.nabble.com/Change-value-shown-in-Tray-Icon-tp50812p50870.html Sent from the gambas-user mailing list archive at Nabble.com. -