[Gambas-user] spam from jusabejus...@hotmail.com

2014-11-26 Thread Julio Sanchez
Dear friends of the forum: >From an old account of mine Mail (jusabejus...@hotmail.com), is being automatically sent to spam mails forum. I do not know how to avoid this. Perdenad discomfort. regards Julio -- Download B

Re: [Gambas-user] Problem with EXEC and GB.Desktop

2014-11-26 Thread Jussi Lahtinen
Str(ww) should return memory address of the object ww, not window ID! Jussi On Thu, Nov 27, 2014 at 1:24 AM, Lewis Balentine wrote: > Oh, I waited long enough. Here is the work around ... > - >WW = Desktop.FindWindow(WindowTitle) >' WW[?] ALWAYS returns an 'out of bound

Re: [Gambas-user] Gambas Software Farm in revision #6676

2014-11-26 Thread Benoît Minisini
Le 27/11/2014 00:32, T Lee Davidson a écrit : > On 11/26/2014 04:05 PM, Fabien Bodard wrote: >> I don't want to it to be so complicated... it was just an idea. As the >> farm can be not only on the wiki place but on private servers too. >> It was an idea for extends. > > Okay, Fabien. I understand;

Re: [Gambas-user] Gambas Software Farm in revision #6676

2014-11-26 Thread T Lee Davidson
On 11/26/2014 04:05 PM, Fabien Bodard wrote: > I don't want to it to be so complicated... it was just an idea. As the > farm can be not only on the wiki place but on private servers too. > It was an idea for extends. Okay, Fabien. I understand; and thank you. I just wanted to be clear on the fact

Re: [Gambas-user] Problem with EXEC and GB.Desktop

2014-11-26 Thread Lewis Balentine
Oh, I waited long enough. Here is the work around ... - WW = Desktop.FindWindow(WindowTitle) ' WW[?] ALWAYS returns an 'out of bounds' error regardless of what value "?" is. ' However WW does hold a valid Window ID WorkStr = Str$(WW) ' this gives us a string of the f

Re: [Gambas-user] Gambas Software Farm in revision #6676

2014-11-26 Thread B Bruen
On Wed, 26 Nov 2014 22:05:26 +0100 Fabien Bodard wrote: > 2014-11-26 19:12 GMT+01:00 T Lee Davidson : > > On 11/26/2014 09:47 AM, Fabien Bodard wrote: > >> I like the idea of a password, one could also imagine a password > >> dynamic key. That is to say a calculated key and unique provided by > >

Re: [Gambas-user] Gambas Software Farm in revision #6676

2014-11-26 Thread Kevin Fishburne
On 11/26/2014 12:55 PM, T Lee Davidson wrote: > > No, Benoît, to my knowledge you never said that. > > My statement was only in response to: > >>> Any publishers successfully using the Farm commercially could graciously >>> 'buy Benoît a beer', or three. >> >> True, I've even bought him a few beers

Re: [Gambas-user] Gambas Software Farm in revision #6676

2014-11-26 Thread Kevin Fishburne
On 11/26/2014 06:22 AM, Benoît Minisini wrote: > Le 26/11/2014 12:05, T Lee Davidson a écrit : >> Oh, I didn't realize Benoît was trying to build a business from the Farm. >> > No, I don't. Did I say that? > LOL. T Lee keeps assigning my desires as other people's desires. The opinions I express h

Re: [Gambas-user] Gambas Software Farm in revision #6676

2014-11-26 Thread Fabien Bodard
2014-11-26 19:12 GMT+01:00 T Lee Davidson : > On 11/26/2014 09:47 AM, Fabien Bodard wrote: >> I like the idea of a password, one could also imagine a password >> dynamic key. That is to say a calculated key and unique provided by >> the farm at the time of payment. > > Yes, Fabien, that would be ve

Re: [Gambas-user] Problem with EXEC and GB.Desktop

2014-11-26 Thread Jussi Lahtinen
Why not to loop until the task is completed? ff = Timer Do ww = Desktop.FindWindow("Shell Terminal") Wait 0.2 If (Timer - ff) > 10 Then HandleTimeOutError() Return Endif Loop Until ww.Count > 0 Jussi On Wed, Nov 26, 2014 at 8:55 PM, T Lee Davidson wrote: > On 11/26/2014

Re: [Gambas-user] Problem with EXEC and GB.Desktop

2014-11-26 Thread T Lee Davidson
On 11/26/2014 07:45 AM, Lewis Balentine wrote: > /' Gambas module file > ' uses: > ' gb > ' gb.desktop > ' gb.desktop.x11(automatically selected by gb.desktop) > ' gb.image(automatically selected by gb.desktop) > ' gb.qt4 (alternates are: gb.gtk, gb.gtk3, gb.gui) > > Public Sub Main() > Di

[Gambas-user] Issue 586 in gambas: gb.net.smtp with SSL hangs gambas if unknown host or not listening port

2014-11-26 Thread gambas
Status: New Owner: Labels: Version-3.6.2 Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 586 by uale...@gmail.com: gb.net.smtp with SSL hangs gambas if unknown host or not listening port https://code.google.com/p/gambas/issues/detail?id=586 1) Describe

Re: [Gambas-user] Gambas Software Farm in revision #6676

2014-11-26 Thread T Lee Davidson
On 11/26/2014 09:47 AM, Fabien Bodard wrote: > I like the idea of a password, one could also imagine a password > dynamic key. That is to say a calculated key and unique provided by > the farm at the time of payment. Yes, Fabien, that would be very handy for a marketplace. But, my idea of protect

Re: [Gambas-user] Gambas Software Farm in revision #6676

2014-11-26 Thread T Lee Davidson
On 11/26/2014 06:22 AM, Benoît Minisini wrote: > Le 26/11/2014 12:05, T Lee Davidson a écrit : >> >> Oh, I didn't realize Benoît was trying to build a business from the Farm. >> > > No, I don't. Did I say that? > No, Benoît, to my knowledge you never said that. My statement was only in response t

Re: [Gambas-user] Feature Request: Val Function

2014-11-26 Thread Ron
There is: Print Val("&H" & "c25688") 12736136 2014-11-26 17:29 GMT+01:00 Lewis Balentine : > There does not seem to be an inverse function for HEX$. > > Feature Request: > Add ability to VAL function to return the value of a HEX string. > > > Example: > Print Val("0xc25688")' formatted a

[Gambas-user] Feature Request: Val Function

2014-11-26 Thread Lewis Balentine
There does not seem to be an inverse function for HEX$. Feature Request: Add ability to VAL function to return the value of a HEX string. Example: Print Val("0xc25688")' formatted as used internally by Gambas 12736136 Print Val("0Hc25688")' formatted as used in Gambas Documentat

Re: [Gambas-user] Gambas Software Farm in revision #6676

2014-11-26 Thread Fabien Bodard
2014-11-26 15:58 GMT+01:00 Fabien Bodard : > hum an Hurry need... Can we have a way to change the password ... or a > way to retreive it ... I forget mine. :-/ And Benoit : The click on the cross must abort the connection... actually if there is text in the textboxes it is not the case. (FFarmCon

Re: [Gambas-user] Gambas Software Farm in revision #6676

2014-11-26 Thread Fabien Bodard
hum an Hurry need... Can we have a way to change the password ... or a way to retreive it ... I forget mine. :-/ -- Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your

Re: [Gambas-user] Gambas Software Farm in revision #6676

2014-11-26 Thread Fabien Bodard
2014-11-26 12:22 GMT+01:00 Benoît Minisini : > Le 26/11/2014 12:05, T Lee Davidson a écrit : >> >> Oh, I didn't realize Benoît was trying to build a business from the Farm. >> > > No, I don't. Did I say that? > XD.. Not Benoit, ... I would keep the money for you, Benoit. I understand quite u

[Gambas-user] Problem with EXEC and GB.Desktop

2014-11-26 Thread Lewis Balentine
"As a last resort, and if you are almost sure that it is an awful bug, you can _send me an e-mail_, but …" /the challenge is finding the email address. / //For anyone interested I have full documentation in the form of a 120 KB PDF file but I need an email address to send it to. // ///-

Re: [Gambas-user] Gambas Software Farm in revision #6676

2014-11-26 Thread Benoît Minisini
Le 26/11/2014 12:05, T Lee Davidson a écrit : > > Oh, I didn't realize Benoît was trying to build a business from the Farm. > No, I don't. Did I say that? -- Benoît Minisini -- Download BIRT iHub F-Type - The Free Enter

Re: [Gambas-user] Gambas Software Farm in revision #6676

2014-11-26 Thread T Lee Davidson
On 11/26/2014 12:24 AM, Kevin Fishburne wrote: > On 11/26/2014 12:02 AM, T Lee Davidson wrote: > >> Hence, my suggestion that it could be used as a pseudo-marketplace by >> allowing publishers to make their listing private. The payment and/or >> transaction details, access credential delivery, and