Re: [Gambas-user] Problem with Gambas 3.4 and Skiptaskbar

2013-10-12 Thread Benoît Minisini
Le 09/10/2013 20:09, herberth guzman a écrit : > hello, I have a question, I have a form that does not want to display on > the taskbar panel, change the skiptaskbar property to true, but pressing > (alt + tab) still appears in the task manager of windows manager. > How do I NOT display in the task

[Gambas-user] Problem with Gambas 3.4 and Skiptaskbar

2013-10-09 Thread herberth guzman
hello, I have a question, I have a form that does not want to display on the taskbar panel, change the skiptaskbar property to true, but pressing (alt + tab) still appears in the task manager of windows manager. How do I NOT display in the taskbar and pressing Alt-Tab is desactivate. --

Re: [Gambas-user] Problem with Gambas and MySql

2013-10-06 Thread Fernando Martins
On 10/06/2013 12:37 AM, Willy Raets wrote: > But the problem is solved (see other post) using a 'SELECT limit 1' I didn't know about this trick (DELETE LIMIT 1), does this work with other DBMS, e.g., PostgreSQL? LIMIT is not even standard. Fernando -

Re: [Gambas-user] Problem with Gambas and MySql

2013-10-05 Thread Willy Raets
On Sat, 2013-10-05 at 17:23 +0200, Fernando Martins wrote: > On 10/05/2013 02:08 PM, Willy Raets wrote: > > > > Then adding a primary key should solve that problem. > > > Indeed, that is the practical solution, but it is an artificial solution > because in _theory_ each tuple should represent a un

Re: [Gambas-user] Problem with Gambas and MySql

2013-10-05 Thread Fernando Martins
On 10/05/2013 11:44 PM, Willy Raets wrote: > On Sat, 2013-10-05 at 10:33 -0400, nando wrote: >> This isn't really a Gambas issue. >> The table is poorly created without a primary key with auto-increment. >> If you wanted to delete one row with values 347 200, then which row would it >> be? >> With

Re: [Gambas-user] Problem with Gambas and MySql

2013-10-05 Thread Willy Raets
On Sat, 2013-10-05 at 10:33 -0400, nando wrote: > This isn't really a Gambas issue. > The table is poorly created without a primary key with auto-increment. > If you wanted to delete one row with values 347 200, then which row would it > be? > Without the primary key, you're asking MySQL to guess,

Re: [Gambas-user] Problem with Gambas and MySql

2013-10-05 Thread Willy Raets
On Sat, 2013-10-05 at 23:11 +0200, Caveat wrote: > MySQL itself doesn't mind about having no primary key: > > mysql> desc test_table; > +---+-+--+-+-+---+ > | Field| Type| Null | Key | Default | Extra | > +---+-+--+--

Re: [Gambas-user] Problem with Gambas and MySql

2013-10-05 Thread Caveat
MySQL itself doesn't mind about having no primary key: mysql> desc test_table; +---+-+--+-+-+---+ | Field| Type| Null | Key | Default | Extra | +---+-+--+-+-+---+ | Actual ID | varchar(20) | YES |

Re: [Gambas-user] Problem with Gambas and MySql

2013-10-05 Thread Fernando Martins
On 10/05/2013 02:08 PM, Willy Raets wrote: > > Then adding a primary key should solve that problem. > Indeed, that is the practical solution, but it is an artificial solution because in _theory_ each tuple should represent a unique entity. In the UI, how do you distinguish one record from the oth

Re: [Gambas-user] Problem with Gambas and MySql

2013-10-05 Thread nando
r' is in Gambas, MySQL knows nothing of it. -Nando -- Original Message --- From: Willy Raets To: mailing list for gambas users Sent: Sat, 05 Oct 2013 14:08:27 +0200 Subject: Re: [Gambas-user] Problem with Gambas and MySql > On Sat, 2013-10-05 at 10:08 +0200, Fernando Mart

Re: [Gambas-user] Problem with Gambas and MySql

2013-10-05 Thread nando
What is the table format? -- Original Message --- From: Fernando Martins To: gambas-user@lists.sourceforge.net Sent: Sat, 05 Oct 2013 10:08:12 +0200 Subject: Re: [Gambas-user] Problem with Gambas and MySql > On 10/05/2013 01:25 AM, Willy Raets wrote: > > On Fri, 2013

Re: [Gambas-user] Problem with Gambas and MySql

2013-10-05 Thread Willy Raets
On Sat, 2013-10-05 at 10:08 +0200, Fernando Martins wrote: > On 10/05/2013 01:25 AM, Willy Raets wrote: > > On Fri, 2013-10-04 at 22:53 +0200, Willy Raets wrote: > > > > Nando, Fernando and Caveat, > > > > Thanks for your responses. > > > >> Content in 'ICzakgewicht' can be like this: > >> | ID | G

Re: [Gambas-user] Problem with Gambas and MySql

2013-10-05 Thread Fernando Martins
On 10/05/2013 01:25 AM, Willy Raets wrote: > On Fri, 2013-10-04 at 22:53 +0200, Willy Raets wrote: > > Nando, Fernando and Caveat, > > Thanks for your responses. > >> Content in 'ICzakgewicht' can be like this: >> | ID | Gewicht | >> 345 100 >> 345 100 >> 345 50 >> 347 200 >> 347 200 >> 347 200 >>

Re: [Gambas-user] Problem with Gambas and MySql

2013-10-04 Thread Willy Raets
On Fri, 2013-10-04 at 22:53 +0200, Willy Raets wrote: Nando, Fernando and Caveat, Thanks for your responses. > > Content in 'ICzakgewicht' can be like this: > | ID | Gewicht | > 345 100 > 345 100 > 345 50 > 347 200 > 347 200 > 347 200 > 347 200 @ Fernando and Caveat Above you can see that mor

Re: [Gambas-user] Problem with Gambas and MySql

2013-10-04 Thread Caveat
Hi Willy Me again! Either use LIMIT row_count on your delete statement as per http://dev.mysql.com/doc/refman/5.0/en/delete.html Or use an auto-incrementing primary key that your VB clients don't need to worry about as per http://dev.mysql.com/doc/refman/5.0/en/example-auto-increment.html Ki

Re: [Gambas-user] Problem with Gambas and MySql

2013-10-04 Thread nando
articular row -- Original Message --- From: Willy Raets To: gambas-user@lists.sourceforge.net Sent: Fri, 04 Oct 2013 22:53:41 +0200 Subject: [Gambas-user] Problem with Gambas and MySql > Hi All, > > In a bigger project where creating, editing and deleting records wor

Re: [Gambas-user] Problem with Gambas and MySql

2013-10-04 Thread Fernando Martins
Hello Willy forgive me, I haven't really tried your application, but why can't you send a SQL DELETE statement? Fernando On 10/04/2013 10:53 PM, Willy Raets wrote: > Hi All, > > In a bigger project where creating, editing and deleting records works > as a charm, only one table is giving me trou

[Gambas-user] Problem with Gambas and MySql

2013-10-04 Thread Willy Raets
Hi All, In a bigger project where creating, editing and deleting records works as a charm, only one table is giving me trouble and just won't delete a record with reason 'No primary key'. Now the table in question 'ICzakgewichten' was migrated from an Access database to MySql and in Access it was

Re: [Gambas-user] Problem with gambas..

2009-03-27 Thread Carlos Humberto Llumiquinga Hidalgo
SHELL is what I looking for... Thanks.. to all.. Regards from Ecuador... :) Carlos H. 2009/3/27 Mike Keehan > Carlos Humberto Llumiquinga Hidalgo wrote: > > Hi all > > > > I have a problem with a code on gambas.. > > > > I'm trying.. this code.. EXEC ["rm", application.Path & "/imagenes/*.

Re: [Gambas-user] Problem with gambas..

2009-03-27 Thread Rolf Schmidt
Hi Carlos > I have a problem with a code on gambas.. > > I'm trying.. this code.. EXEC ["rm", application.Path & "/imagenes/*.*"] > ... just I wanna erase the content of images folder. > > But I got an error.. on console... rm: can't erase > «/home/carlosh/Prueba/imagenes/*.*»: File don't exists

Re: [Gambas-user] Problem with gambas..

2009-03-27 Thread Mike Keehan
Carlos Humberto Llumiquinga Hidalgo wrote: > Hi all > > I have a problem with a code on gambas.. > > I'm trying.. this code.. EXEC ["rm", application.Path & "/imagenes/*.*"] > ... just I wanna erase the content of images folder. > > But I got an error.. on console... rm: can't erase > «/home

Re: [Gambas-user] Problem with gambas..

2009-03-26 Thread richard terry
On Fri, 27 Mar 2009 02:13:27 pm Carlos Humberto Llumiquinga Hidalgo wrote: > Hi Dimitris... the folder exist.. and the spell is correctly... that was > the first what I checked.. > By the way it's not empty... > > 2009/3/26 Dimitris Anogiatis > > > You either are trying to delete a folder that doe

Re: [Gambas-user] Problem with gambas..

2009-03-26 Thread Carlos Humberto Llumiquinga Hidalgo
Hi Dimitris... the folder exist.. and the spell is correctly... that was the first what I checked.. By the way it's not empty... 2009/3/26 Dimitris Anogiatis > You either are trying to delete a folder that doesn't exist or it exists > but > you didn't spell it correctly > > try the isDIR functio

Re: [Gambas-user] Problem with gambas..

2009-03-26 Thread Dimitris Anogiatis
You either are trying to delete a folder that doesn't exist or it exists but you didn't spell it correctly try the isDIR function to determine if the folder you're looking exists indeed Documentation for the isDIR function is located here: http://gambasdoc.org/help/lang/isdir?v3 Hope that helps.

[Gambas-user] Problem with gambas..

2009-03-26 Thread Carlos Humberto Llumiquinga Hidalgo
Hi all I have a problem with a code on gambas.. I'm trying.. this code.. EXEC ["rm", application.Path & "/imagenes/*.*"] ... just I wanna erase the content of images folder. But I got an error.. on console... rm: can't erase «/home/carlosh/Prueba/imagenes/*.*»: File don't exists Help Please

Re: [Gambas-user] Problem with gambas wiki web site

2008-12-14 Thread Benoit Minisini
On dimanche 14 décembre 2008, Rob wrote: > On Friday 12 December 2008 11:30, Benoit Minisini wrote: > > Apparently gambasdoc.org does not answer anymore, nor kudla.org, the > > domain where you can write to Rob Kudla, the gambasdoc.org server owner. > > If you read that Rob, please tell us what hap

Re: [Gambas-user] Problem with gambas wiki web site

2008-12-14 Thread Rob
On Friday 12 December 2008 11:30, Benoit Minisini wrote: > Apparently gambasdoc.org does not answer anymore, nor kudla.org, the > domain where you can write to Rob Kudla, the gambasdoc.org server owner. > If you read that Rob, please tell us what happens! We had an ice storm here in the northern p

[Gambas-user] Problem with gambas wiki web site

2008-12-12 Thread Benoit Minisini
Hi all, Apparently gambasdoc.org does not answer anymore, nor kudla.org, the domain where you can write to Rob Kudla, the gambasdoc.org server owner. If you read that Rob, please tell us what happens! -- Benoit Minisini -