Re: [Gambas-user] Issue 576 in gambas: TextBox.Select not reliable

2014-11-06 Thread Christof Thalhofer
Hello Benoît, Am 07.11.2014 um 00:05 schrieb gam...@googlecode.com: > Updates: > Status: Fixed > > Comment #5 on issue 576 by benoit.m...@gmail.com: TextBox.Select not > reliable > https://code.google.com/p/gambas/issues/detail?id=576 > > I found a workaround in revision #6613. Fantasti

Re: [Gambas-user] What "Cannot read information about table mi_table_name" means?

2014-11-06 Thread Benoît Minisini
Le 06/11/2014 10:51, Jorge Carrión a écrit : > Correcting mysef: > > Yesterday it works in home, this morning it doesn't work in office. Isn't > enough repeat the .Create line. Is necesary to close and re-open the > connection: > Can you try revision #6614? I added an automatic reconnection where

Re: [Gambas-user] Issue 576 in gambas: TextBox.Select not reliable

2014-11-06 Thread gambas
Updates: Status: Fixed Comment #5 on issue 576 by benoit.m...@gmail.com: TextBox.Select not reliable https://code.google.com/p/gambas/issues/detail?id=576 I found a workaround in revision #6613. Anyway, don't call WAIT during event handlers, you will often have strange problems. --

Re: [Gambas-user] Datasource.Filter does not work

2014-11-06 Thread B Bruen
On Thu, 6 Nov 2014 16:04:33 -0500 "Martin McGlensey" wrote: > Hello, (snipo) > Now further down in a sub login.Filter = "User = " & txtLogin.Text, where > txtLogin.Text = "Marty", I get "query failed, unknown column 'Marty' in > where clause" > The error ypu are reciving is correct. You need t

Re: [Gambas-user] Datasource.Filter does not work

2014-11-06 Thread Benoît Minisini
Le 06/11/2014 22:04, Martin McGlensey a écrit : > Hello, > > > > Using Gambas 3.6.1 on Ubuntu 12.04. I have a datatable called "tblUsers" > with the following columns: Record_No, User, Password and last_Update. > Record_No is the primary index. I have verified that there are two records > in the d

[Gambas-user] Datasource.Filter does not work

2014-11-06 Thread Martin McGlensey
Hello, Using Gambas 3.6.1 on Ubuntu 12.04. I have a datatable called "tblUsers" with the following columns: Record_No, User, Password and last_Update. Record_No is the primary index. I have verified that there are two records in the datatable. Have the following code: Login

Re: [Gambas-user] Retrieve charset of mimepart

2014-11-06 Thread Benoît Minisini
Le 06/11/2014 13:20, roberto a écrit : > Thanks Jorge for you fast reply > > I have tried with: > >s = hPart.Headers["content-type"] > If InStr(s, "charset") > 0 Then > bla bla bla (estrapolate "charset" content ) > endif > > but is not an excellent solution > AFA

Re: [Gambas-user] Make Datacontrol act like textbox with password set to

2014-11-06 Thread Martin McGlensey
Thanks, Tobias. Routine works perfectly. Regards, Marty -Original Message- From: gambas-user-requ...@lists.sourceforge.net [mailto:gambas-user-requ...@lists.sourceforge.net] Sent: Wednesday, November 5, 2014 1:45 AM To: gambas-user@lists.sourceforge.net Subject: Gambas-user Digest, Vol

Re: [Gambas-user] Retrieve charset of mimepart

2014-11-06 Thread roberto
Thanks Jorge for you fast reply I have tried with: s = hPart.Headers["content-type"] If InStr(s, "charset") > 0 Then bla bla bla (estrapolate "charset" content ) endif but is not an excellent solution Il 06/11/2014 12:24, Jorge Carrión ha scritto: > I use this cod

Re: [Gambas-user] Retrieve charset of mimepart

2014-11-06 Thread Jorge Carrión
I use this code in the EMail function to set the mime. I'm not very sure if this is what you are asking for: For Each fich In aAttached Exec ["file", "-bi", fich] To mime mime = Left(mime, InStr(mime, ";") - 1) fname = Right(fich, - RInStr(fich, "/"))

Re: [Gambas-user] What "Cannot read information about table mi_table_name" means?

2014-11-06 Thread Jorge Carrión
Yes, I do the .Commit, but the error and charset change is produced in .Create line and the charset change in Insert line without errors... Now I'm doing a Class inherited of Connection who get around the error... hope it works without too much changes on my finished buggys develepments :-) Regar

Re: [Gambas-user] Problems compiling Gambas 3.6.1

2014-11-06 Thread CJ
Sebastian, Is this compiling issue fixed in current Trunk version or am I missunderstanding something? > Benoît, could you please backport this fix to the 3.6 branch? > It was the only thing keeping me from compiling the compiler and > interpreter under Mac OS without issues. I will post anoth

Re: [Gambas-user] What "Cannot read information about table mi_table_name" means?

2014-11-06 Thread Fabien Bodard
Heva you trying hcon.commit ?after the update. Le 6 nov. 2014 10:53, "Jorge Carrión" a écrit : > Correcting mysef: > > Yesterday it works in home, this morning it doesn't work in office. Isn't > enough repeat the .Create line. Is necesary to close and re-open the > connection: > > > Public Sub hl

Re: [Gambas-user] What "Cannot read information about table mi_table_name" means?

2014-11-06 Thread Jorge Carrión
Correcting mysef: Yesterday it works in home, this morning it doesn't work in office. Isn't enough repeat the .Create line. Is necesary to close and re-open the connection: Public Sub hlog(tipo As String, detalle As String) Dim r As Result Dim s As String s = Replace(detalle, "'",

[Gambas-user] Retrieve charset of mimepart

2014-11-06 Thread Roberto
Dear All, there is a method to get the charset of a mimepart ( eg. part.ContentType = "plain/text" )? Best Regards Gambas 3.6 -- ___ Gambas-user mailing list Gambas-user@lists.s