[Gambas-user] gb.report Question

2015-02-06 Thread Johny Provoost
I have a program which the possibility to print to print address labels with gb.report. Works perfectly but I always have to close the program before I can print the same report with different data. It always put the first data into the report. My code to put data on the labels is in the _New

Re: [Gambas-user] gb.report Question

2015-02-06 Thread Fabien Bodard
Can you send me à project that Show how you are doing Le 6 févr. 2015 12:39, "Johny Provoost" a écrit : > I have a program which the possibility to print to print address labels > with gb.report. Works perfectly but I always have to close the program > before I can print the same report with di

Re: [Gambas-user] gb.report Question

2015-02-06 Thread Johny Provoost
I'll try to cut that peace off, otherwise I'll send the whole project. Op 06-02-15 om 14:07 schreef Fabien Bodard: > Can you send me à project that Show how you are doing > Le 6 févr. 2015 12:39, "Johny Provoost" a écrit : > >> I have a program which the possibility to print to print address

Re: [Gambas-user] gb.report Question (Solved)

2015-02-06 Thread Johny Provoost
Fabien, While try to isolate the code I'll found the problem. A stupid list wasn't updated with the new data. Well, I'm only a would-be programmer (and an old one too), not a professional so I'm do some stupid things. So in fact, indirectly, you solve my problem :>). Thank you for this and s

[Gambas-user] Dropbox Uploader

2015-02-06 Thread CJ
Just wanted to share this neat script that uses curl for uploading or downloading files/directories from CLI and/or Gambas. http://www.andreafabrizi.it/?dropbox_uploader Takes a few minutes to set up, here is a guide... http://xmodulo.com/access-dropbox-command-line-linux.html /CJ -

Re: [Gambas-user] gb.report Question

2015-02-06 Thread Fabien Bodard
Ok Le 6 févr. 2015 14:37, "Johny Provoost" a écrit : > I'll try to cut that peace off, otherwise I'll send the whole project. > > > Op 06-02-15 om 14:07 schreef Fabien Bodard: > > Can you send me à project that Show how you are doing > > Le 6 févr. 2015 12:39, "Johny Provoost" a > écrit : > >

Re: [Gambas-user] gb.report Question (Solved)

2015-02-06 Thread Fabien Bodard
Le 6 févr. 2015 16:20, "Johny Provoost" a écrit : > > Fabien, > > While try to isolate the code I'll found the problem. A stupid list > wasn't updated with the new data. > Well, I'm only a would-be programmer (and an old one too), not a > professional so I'm do some stupid things. > So in fact, i

[Gambas-user] FileChooser Settings format

2015-02-06 Thread adamn...@gmail.com
Could you decipher the format of the .config settings for a FileChooser please. [FMain] Geometry=[205,186,840,564,0] FileChooser1=[1,"/home/horsedownload","/home/horsedownload","",True,[182,642],[1,True,False,"3,37.143,+,12.571,>,39.143",32,False],1] In particular, I'm looking for whether it save

Re: [Gambas-user] FileChooser Settings format

2015-02-06 Thread Benoît Minisini
Le 06/02/2015 23:09, adamn...@gmail.com a écrit : > Could you decipher the format of the .config settings for a > FileChooser please. > > [FMain] Geometry=[205,186,840,564,0] > FileChooser1=[1,"/home/horsedownload","/home/horsedownload","",True,[182,642],[1,True,False,"3,37.143,+,12.571,>,39.143",3

Re: [Gambas-user] FileChooser Settings format

2015-02-06 Thread adamn...@gmail.com
On Fri, 06 Feb 2015 23:24:47 +0100 Benoît Minisini wrote: > Le 06/02/2015 23:09, adamn...@gmail.com a écrit : > > Could you decipher the format of the .config settings for a > > FileChooser please. > > > > [FMain] Geometry=[205,186,840,564,0] > > FileChooser1=[1,"/home/horsedownload","/home/horse

Re: [Gambas-user] FileChooser Settings format

2015-02-06 Thread adamn...@gmail.com
Sorry, that's the "Detailed view" toggle button. B -- B Bruen -- Dive into the World of Parallel Programming. The Go Parallel Website, sponsored by Intel and developed in partnership with Slashdot Media, is your hub fo

Re: [Gambas-user] Password error on clicking store or examples in GUI

2015-02-06 Thread Ian
Apologies - copied the image in page rather than an attachment. The error text reads: This application has raised an unexpected error and must abort. [6] Type mismatch: wanted string, got component instead. _Desktop_Passwords._get.75 Once I get this error, I cannot close the GUI and have to do a

[Gambas-user] Feature Request

2015-02-06 Thread Ian
Would it be possible to have a Gambas function to return a string based on a Boolean value. IFF may not be the best naming convention for the keyword but was all I could think of. Public Function IFF(InBool As Boolean, InStrTrue As String, InStrFalse As String) As String If Inbool Then

Re: [Gambas-user] Password error on clicking store or examples in GUI

2015-02-06 Thread Benoît Minisini
Le 07/02/2015 02:40, Ian a écrit : > Apologies - copied the image in page rather than an attachment. > > The error text reads: > > This application has raised an unexpected error and must abort. > [6] Type mismatch: wanted string, got component instead. > _Desktop_Passwords._get.75 > > Once I get t

Re: [Gambas-user] Password error on clicking store or examples in GUI

2015-02-06 Thread Ian
Yes copied text exactly as per the error dialogue. with attachment now. When clicking on examples, I get the same error message as soon as I click the link "There" Cheers, Ian. On 07/02/15 09:54, Benoît Minisini wrote: Le 07/02/2015 02:40, Ian a écrit : Apologies - copied the image in pag

[Gambas-user] Issue 602 in gambas: Large fonts don't appear correctly in ListBox control

2015-02-06 Thread gambas
Status: New Owner: Labels: Version-TRUNK Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 602 by zachsmit...@gmail.com: Large fonts don't appear correctly in ListBox control https://code.google.com/p/gambas/issues/detail?id=602 1) Large fonts don't appe

Re: [Gambas-user] Feature Request

2015-02-06 Thread T Lee Davidson
Hey Ian, Unless I'm missing something, you're talking about an Inline IF. And, there already is one. http://gambaswiki.org/wiki/lang/iif Print IIf(True, "Yes", "No") ' -> Yes Print IIf(False, "Yes", "No") ' -> No Lee __ On 02/06/2015 08:51 PM, Ian wrote: > Would it be possible to hav

Re: [Gambas-user] Feature Request

2015-02-06 Thread Fabien Bodard
:-P You need to read the wki help language pages at least ! 2015-02-07 7:09 GMT+01:00 T Lee Davidson : > Hey Ian, > > Unless I'm missing something, you're talking about an Inline IF. And, there > already is one. > > http://gambaswiki.org/wiki/lang/iif > > Print IIf(True, "Yes", "No") ' -> Yes > P