Re: [Gambas-user] a Debug question

2009-05-02 Thread Doriano Blengino
Benoît Minisini ha scritto: If one puts in a breakpoint, and is stepping through the code one line at a time to check values of variables etc, is there any way or re-setting to a line in the same subroutine prior to the current line you have stopped on. I've found sometimes I'm trying to

Re: [Gambas-user] a Debug question

2009-05-02 Thread Sergio A. Hernandez
My recommendation is you to print the values on the console to track them at run-time, I prefer to use this technique more than use the integrated debugger, since you can follow up the overall outcome without start/stops. Some people don't like it, but I find it very useful. On Fri, May 1, 2009

Re: [Gambas-user] gambas server page.

2009-05-02 Thread Joshua Higgins
I have just got this working. Bascially, Apache runs your gambas server page as a CGI script, so drop it in your cgi-bin folder (with a properly configured server of course), give it execute permission and it should work. To call in firefox the page generated, give it the url to the script. Your

[Gambas-user] calling gambas server page from html form (post)

2009-05-02 Thread Joshua Higgins
I've been experimenting with Gambas server pages and I must say, its brilliant. At the moment I'm trying to get data entered on a form on a web page to be written to a file on the server. I have got as far as making the html page with a form. Here is an excerpt: form action=myscript.gbw

Re: [Gambas-user] calling gambas server page from html form (post)

2009-05-02 Thread Benoît Minisini
I've been experimenting with Gambas server pages and I must say, its brilliant. At the moment I'm trying to get data entered on a form on a web page to be written to a file on the server. I have got as far as making the html page with a form. Here is an excerpt: form action=myscript.gbw