> Tks,
> My gambas server work now.
>
> Questions:
>
> Is possible multiplies comands in string?
>    Ex: <% DIM a AS Integer
>                 DIM c AS String %>
>

Yes.

The three rules are :

The web page is transformed into a Gambas function.

All HTML is replaced by a PRINT instruction.

The Gambas code between <% ... %> is put "as is" inside the function.

<%= XXX %> is replaced by a the expression Str(HTML(XXXX))

> In other message Benoit say for use the mysql <% USE "gb.db" %>. Is
> Possible for all componentes of gambas?
>     Ex: <% USE "gb.Form" %>
>            <% DIM myObject AS TextBox %>
>            <% myObject = NEW TextBox AS "MyTxtBx" %>
>            <% myObject.X = 10 %>
>            <% MyObject.Y = 10 %>
>            <% myObject.Text = "Hellho Word!!!" %>
>            <% myObject.Show() %>
>
> Reguards,
>
> Souza, Wellington
>
> PS: My english is not very well.

All components can be used. But using "gb.qt" inside a CGI script would lead 
to an error, as the QT library won't be able to connect to an X11 display.

Regards,

-- 
Benoît

------------------------------------------------------------------------------
Register Now & Save for Velocity, the Web Performance & Operations 
Conference from O'Reilly Media. Velocity features a full day of 
expert-led, hands-on workshops and two days of sessions from industry 
leaders in dedicated Performance & Operations tracks. Use code vel09scf 
and Save an extra 15% before 5/3. http://p.sf.net/sfu/velocityconf
_______________________________________________
Gambas-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to