[Gambas-user] Window.Show() behaviour

2010-07-30 Thread Benoît Minisini
> Benoît Minisini wrote: > > You enter the event loop once the Main() function is finished. Why do you > > want > > to display a form before? It's weird too! > > I want the form to display as soon as the program is run, basically. > > I have the Form_Open procedure immediately execute several pro

Re: [Gambas-user] menu.popup does not work with tray icon

2010-07-30 Thread Benoît Minisini
> Hi All, > > I found a strange problem for menu.popup() method. > > To reproduce the problem, unpack the attached small project, > run it, and do the following steps. > > 1. Right click tray icon and menu is displayed. (OK) > 2. Double click tray icon and second form is open. (OK) > 3. Then clo

[Gambas-user] menu.popup does not work with tray icon

2010-07-30 Thread HARADA Kazutaka
Hi All, I found a strange problem for menu.popup() method. To reproduce the problem, unpack the attached small project, run it, and do the following steps. 1. Right click tray icon and menu is displayed. (OK) 2. Double click tray icon and second form is open. (OK) 3. Then close second form. (OK)

Re: [Gambas-user] post data and file http form

2010-07-30 Thread Fabien Bodard
i think its better like this ... send htmlform data part to gambas2 application (=cgi) it is that ? (in the other way ...) 2010/7/29 Doriano Blengino : > Szenográdi Norbert ha scritto: >> Dear All, >> >> Can you help me, how can I send datas and files to html form from >> Gambas2 app? >> > Dear

Re: [Gambas-user] Post data and files

2010-07-30 Thread jose
Hey amigos!, thanks for all the help offered, Caveat code you sent is excellent, very clear and said With this information I am in the final stages of concluding a cms in php, supplementing with a graphical interface. As soon as I finish, I will release under GPL. This was thanks to you a

Re: [Gambas-user] Post data and files

2010-07-30 Thread Szenográdi Norbert
Hi Ceveat, It's okay and thank you this sample. But, can you help that how can send file(s) with this sample? Best Regards, Sevoir 2010. 07. 30, péntek keltezéssel 10.48-kor Caveat ezt írta: > Hi Jose and Sevoir > > You do not need to use Shell and command lines to do POST of data to a > web

Re: [Gambas-user] Post data and files

2010-07-30 Thread Caveat
Hi Jose and Sevoir You do not need to use Shell and command lines to do POST of data to a web page! Use HttpClient from gb.net.curl in Gambas. I have enclosed a simple project which demonstrates this. Regards, Caveat TestProject2.tar.gz Description: application/compressed-tar --

Re: [Gambas-user] Post data and files

2010-07-30 Thread Szenográdi Norbert
Hi Jose, I had same problem yesterday. My solving: with installed curl test.php: Gambas2 code example: 2 textbox (txtBox1.text => thing1; txtBox2.text => thing2) 1 textbox for file link (fileBox.text => file) FMain.class: PUBLIC SUB Button1_Click() DIM comm AS String comm = "curl " comm &=