[Gambas-user] Creating gambas component

2012-05-04 Thread fvegaf
I have created gambas 2 components before, but now when I'm setting up the properties of the project, in the tab "provides" on that tab is not showing anything (columns: class, type, group) when I right click on a blank area underneath the titles, I got the error "This application has raised an un

Re: [Gambas-user] Unknown field -- Case sensitive fields?

2011-10-19 Thread fvegaf
Why did it change from gambas 1 to Gambas 2? The same code was working fine in Gambas 1. fvegaf wrote: > > I'm getting the error "unknown field: codigo" > > This os the code: > '- > cQuery = "Select Empleado, Codigo from Empleado

Re: [Gambas-user] Unknown field -- Case sensitive fields?

2011-10-19 Thread fvegaf
int(11) | NO | MUL | 0 | | ++--+--+-+-+---+ fvegaf wrote: > > I'm getting the error "unknown field: codigo" > > This os the code: > '- > cQuery = "Select Empleado, Codigo fro

Re: [Gambas-user] Unknown field -- Case sensitive fields?

2011-10-18 Thread fvegaf
I'm using mysql database. fvegaf wrote: > > I'm getting the error "unknown field: codigo" > > This os the code: > '- > cQuery = "Select Empleado, Codigo from Empleado where empleado=101010" > resEmp = con1.Exec(cQU

[Gambas-user] Unknown field -- Case sensitive fields?

2011-10-18 Thread fvegaf
I'm getting the error "unknown field: codigo" This os the code: '- cQuery = "Select Empleado, Codigo from Empleado where empleado=101010" resEmp = con1.Exec(cQUery) FOR EACH resEmp var = resEmp!codigo NEXT '- The line os on the line: "var = resEmp!codigo", chang

[Gambas-user] Unexpected INPUT in form definition

2011-09-13 Thread fvegaf
I'm creating a menu in the menu editor: File Exit Input Modify And I'm getting this error wher try to run it:"Unexpected INPUT in form definition" This is the conten of the .form file # Gambas Form File 2.0 { Form Form MoveScaled(0

Re: [Gambas-user] Gambas 2 and mysql bin-log

2011-08-30 Thread fvegaf
Thanks for your help, Setting the DB.Debug=True help me to figure it out. Turns that cQuery = " Insert into test.StatusCodes() values (19, '19')" does not save in the sentence in the bin-log and db2.name="test" cQuery = " Insert into StatusCodes() values (19, '19')" saves in the sentence in

Re: [Gambas-user] Gambas 2 and mysql bin-log

2011-08-30 Thread fvegaf
I need that the "insert" statement to be logged in the binary log. fvegaf wrote: > > I turned on the mysql binary log, but my gambas inserts, updates and > deletes are not showing in the binary log (MySQL) > > Example: > > strQ = "Insert into ta

[Gambas-user] Gambas 2 and mysql bin-log

2011-08-30 Thread fvegaf
I turned on the mysql binary log, but my gambas inserts, updates and deletes are not showing in the binary log (MySQL) Example: strQ = "Insert into tabletest(field1) values('test')" rs = db.Exec(strQ) I tried the following, and works, but it implies that I will need to rewrite my entire applic