[Gambas-user] Gambas3 WebSettings.HttpProxy

2011-12-07 Thread marco bra
I defined o gambas3 WebSettings.HttpProxy it works fine but how can i add proxy exclusion i mean no proxy for some domain or ip ? Thanks Marco -- Linux Infinite Freedom -- Cloud Services Checklist: Pricing and Pack

Re: [Gambas-user] Gambas3 WebSettings.HttpProxy

2011-12-17 Thread marco bra
> Anyway I'm curious: why should we need different proxies for different > domains or ip? Because i have to made some try querying localhost with no proxy set and then also with other external ip with proxy BTW i have solved by set WebSettings.HttpProxy or WebSettings.noProxy based on the address

Re: [Gambas-user] Issue 160 in gambas: Requirement connection timeout

2011-12-21 Thread marco bra
2011/12/22 : > Updates: >        Summary: Requirement connection timeout >        Status: Fixed > > Comment #2 on issue 160 by benoit.m...@gmail.com: Requirement connection > timeout > http://code.google.com/p/gambas/issues/detail?id=160 > > Done in revision #4309. I added a Connection.Timeout pro

Re: [Gambas-user] Issue 612 in gambas: BUG Cannot browse more of 128 records on tables "No current connection"

2015-03-29 Thread marco bra
There must something i cannot understand with this I try on the same sqlite3 database - creating a different new test project - defining new datasource - defining a databrowser that use that datasource tables, the tables do not have any primary key defined i can browse the entire tables conten

[Gambas-user] Error (bug report request at startup) running MapView example

2013-08-06 Thread marco bra
Hi with gambas trunk rev. 5773 Starting MapView i get: ** Oops! Internal error! ** ** Symbol 'Alt' declared twice in class 'Key' ** Program aborting. Sorry! :-( ** Please send a bug report at gam...@users.sourceforge.net Thank you marco -- Linux Infinite Freedom I'm writing from this place:

Re: [Gambas-user] Error (bug report request at startup) running MapView example

2013-08-06 Thread marco bra
Fixed Thanks Marco 2013/8/6 Benoît Minisini : > Le 06/08/2013 16:58, marco bra a écrit : >> Hi with gambas trunk rev. 5773 >> >> Starting MapView i get: >> >> ** Oops! Internal error! ** >> ** Symbol 'Alt' declared twice in class 'Key' &g

[Gambas-user] smtp mail with gambas 2.20 sent mail body message and/or attached file not sowhon/opened by client

2010-05-24 Thread marco bra
Hi all, with with gambas 2.20 cannot create useful mail body message if i have also attach a file to a message all work fine if i sent only the body message or the attached file. I supposed there must be a bug about this... Do you have a working full tested example code to play with... ? Many

Re: [Gambas-user] smtp mail with gambas 2.20 sent mail body message and/or attached file not sowhon/opened by client

2010-05-25 Thread marco bra
Using gambas 2.20.2-1~ppa~karmic1 on Ubuntu 9.10 Below the code i test. PUBLIC SUB pbinviaposta_Click() DIM smtp AS NEW SmtpClient WITH smtp IF NOT IsNull(smtp) THEN ' .Alternative = FALSE .From = "myinternalmailn...@mylocaldomain" .Subject = "My subj

Re: [Gambas-user] smtp mail with gambas 2.20 sent mail body message and/or attached file not sowhon/opened by client

2010-05-27 Thread marco bra
Ok i have posted all tests to you. As you can see also Evolution ( and also Outlook) loose attached file (the file is in the message source ) but it isn't able to open attachment. When smtp class generated message have body message and attachment. Only kmail can open and read all the message parts

Re: [Gambas-user] smtp mail with gambas 2.20 sent mail body message and/or attached file not sowhon/opened by client

2010-05-30 Thread marco bra
> I think that the problem comes form a missing newline: can anyone try with > revision #2982 to confirm or not? Tested on Ubuntu with Thunderbird Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.3a5pre) Gecko/20100530 Shredder/3.2a1pre Now it works...! Many thanks Marco -- Linux Infinite Freed

Re: [Gambas-user] Shadow effects... please tell if you like it...

2012-08-23 Thread marco bra
2012/8/23 Benoît Minisini > Le 23/08/2012 15:52, marco bra a écrit : > > Hi, > > > > here some graphic idea to dress in a different way (see the attached > > Gambas3_suggested_effects.png) > > the shadow effects... ( please see the attached Gambas3_now_effects.pn

Re: [Gambas-user] Gambas-3 & Ubuntu 12.10 Quantal

2012-08-24 Thread marco bra
... >> will include endpoint security, mobile security and the > >> latest in malware > >> threats. > I strongly suggest you to use a stable release (latest stable is Ubuntu 12.04.1) instead of use Ubuntu 12.10 quantal ( this release is in alpha stage ) since you are asking how to update a Ubuntu

Re: [Gambas-user] Shadow effects... please tell if you like it...

2012-08-24 Thread marco bra
2012/8/24 Benoît Minisini > > Le 24/08/2012 10:11, marco bra a écrit : > > 2012/8/23 Benoît Minisini > > > >> Le 23/08/2012 17:13, marco bra a écrit : > >>> 2012/8/23 Benoît Minisini > >>> > >>>> Le 23/08/2012 15:52, marco b

Re: [Gambas-user] Shadow effects... please tell if you like it...

2012-08-24 Thread marco bra
2012/8/24 Benoît Minisini : > Le 24/08/2012 14:18, Bruce a écrit : >>> The shadow means that the GridView inner pass "under" the headers. >>> Something like that: >>> >>> >>> >>>(1) (2) >>>-- (3) -- >>> .=--

[Gambas-user] Can you esplain the order of message() in a webform

2017-09-16 Thread marco bra
Hi, playing with gb.web component using gambas 3.10.90 daily if i create a button to show two dialog message , i get wrong order (2 then 1) of displayed message, why ? Public Sub wbcerca_Click() Message("1 tot recordset number before selection " & Str(rs.Count)) ' apriconn(webtextbox1.text)

Re: [Gambas-user] Can you esplain the order of message() in a webform

2017-09-19 Thread marco bra
r < gambas-user@lists.sourceforge.net>: > Le 17/09/2017 à 00:05, marco bra a écrit : > >> Hi, playing with gb.web component using gambas 3.10.90 daily >> >> if i create a button to show two dialog message , i get wrong order (2 >> then >> 1) of displayed message, why