Re: [Gambas-user] Gambas MD5 and MySQL MD5 Do Not Match

2009-10-23 Thread Jorge Carrión
Put your code here. I do not have problems whith crypt. you should do something bad... 2009/10/23 briansykes brisy...@gmail.com I am trying to used stored MD5 passwords in a MySQL database with Gambas2, but with Crypt.MD5 i get numbers letters and dollar signs which is not an MD5 sum does

Re: [Gambas-user] set of questions

2009-10-23 Thread charlesg
Doriano While you are busy dumping on yourself, let me join in: you are wrong. 1) You are wrong that you do not have a good command of the English language. I have often marvelled (in that vaguely condescending British sort of a way :)) how good your (in particular) and every contributors (in

Re: [Gambas-user] Gambas MD5 and MySQL MD5 Do Not Match

2009-10-23 Thread Fabien Bodard
use the md5sum binary or generate the stored password with gambas crypt library !!! it's to different thing... on one part, you have a summary... in other an encrypted password ! 2009/10/23 Jorge Carrión sho...@gmail.com: Put your code here. I do not have problems whith crypt. you should do

Re: [Gambas-user] set of questions

2009-10-23 Thread Doriano Blengino
charlesg ha scritto: Doriano While you are busy dumping on yourself, let me join in: you are wrong. ... Hoping that this is the right place to post a thought... :-) I would only say the following. I am not angry with anyone, and I don't really intend to leave the list, only to limit myself

[Gambas-user] Form problem with Gambas v2.16

2009-10-23 Thread Olivier Cruilles
Hello Benoit, Since Gambas v2.16, after copy/paste objects by the IDE (as button or Panel) in my main form, I can not execute or recompil my project because the following error panel appair: Too many constants dans la définition du formulaire. Maybe there is too many objects declared in

Re: [Gambas-user] set of questions

2009-10-23 Thread Ron_1st
On Friday 23 October 2009, Doriano Blengino wrote: charlesg ha scritto: Doriano While you are busy dumping on yourself, let me join in: you are wrong. ... Hoping that this is the right place to post a thought... :-) ---8--- Regards to all, Doriano Blengino Your doing well

Re: [Gambas-user] Form problem with Gambas v2.16

2009-10-23 Thread Benoît Minisini
Hello Benoit, Since Gambas v2.16, after copy/paste objects by the IDE (as button or Panel) in my main form, I can not execute or recompil my project because the following error panel appair: Too many constants dans la définition du formulaire. Maybe there is too many objects declared

Re: [Gambas-user] set of questions

2009-10-23 Thread Benoît Minisini
The boss is an amazing chap: he writes and maintains Gambas, holds down a job and is, I believe, a Thespian of repute. To avoid any unrecoverable read Yes the big boss is a big wonder. Hey, this is my birthday or what? :-) What does Thespian of repute means? -- Benoît Minisini

Re: [Gambas-user] set of questions

2009-10-23 Thread Werner
Benoît Minisini wrote: The boss is an amazing chap: he writes and maintains Gambas, holds down a job and is, I believe, a Thespian of repute. To avoid any unrecoverable read Yes the big boss is a big wonder. Hey, this is my birthday or what? :-) What does Thespian of repute

Re: [Gambas-user] Form problem with Gambas v2.16

2009-10-23 Thread Dag Jarle Johansen
Benoît Minisini schrieb: Hello Benoit, Since Gambas v2.16, after copy/paste objects by the IDE (as button or Panel) in my main form, I can not execute or recompil my project because the following error panel appair: Too many constants dans la définition du formulaire. Maybe there is too

Re: [Gambas-user] Gambas MD5 and MySQL MD5 Do Not Match

2009-10-23 Thread briansykes
Well the stored passwords are users for a chat server i'm making and they sign up for via website, so i can use gambas to do the stored passwords i have to use php's md5 function, so using the gambas crypt library isn't doable. As for the md5sum binary, as far as i can see thats for files only,

Re: [Gambas-user] Form problem with Gambas v2.16

2009-10-23 Thread Benoît Minisini
Here is the file: The limit is 4096 constant by class, a constant being a string or a floating point number. This limit cannot be changed in Gambas 2, because of the bytecode. But you can solve that problem by not putting everything in the same class. You have a TabStrip with five tabs.

Re: [Gambas-user] set of questions

2009-10-23 Thread Ron_1st
On Friday 23 October 2009, Werner wrote: Benoît Minisini wrote: The boss is an amazing chap: he writes and maintains Gambas, holds down a job and is, I believe, a Thespian of repute. To avoid any unrecoverable read Yes the big boss is a big wonder. Hey, this is my

Re: [Gambas-user] Form problem with Gambas v2.16

2009-10-23 Thread Ron_1st
On Saturday 24 October 2009, Benoît Minisini wrote: Here is the file: The limit is 4096 constant by class, a constant being a string or a floating point number. This limit cannot be changed in Gambas 2, because of the bytecode. But you can solve that problem by not putting