Re: [Gambas-user] Gambas migration to github (or something else?)

2015-05-30 Thread Benoît Minisini
Le 30/05/2015 21:42, Adrien Prokopowicz a écrit : > Le Sat, 30 May 2015 20:23:17 +0200, Benoît Minisini > a écrit: > >> Hi, >> >> I'm currently testing the SVN import feature of github for Gambas. >> >> The plan is to migrate from subversion to something else, that "else" >> having to provide git

Re: [Gambas-user] Gambas migration to github (or something else?)

2015-05-30 Thread Adrien Prokopowicz
Le Sat, 30 May 2015 20:23:17 +0200, Benoît Minisini a écrit: > Hi, > > I'm currently testing the SVN import feature of github for Gambas. > > The plan is to migrate from subversion to something else, that "else" > having to provide git (or svn) and a bug tracker. > > The main reason is the "Gim

[Gambas-user] Gambas migration to github (or something else?)

2015-05-30 Thread Benoît Minisini
Hi, I'm currently testing the SVN import feature of github for Gambas. The plan is to migrate from subversion to something else, that "else" having to provide git (or svn) and a bug tracker. The main reason is the "Gimp" sourceforge case. If anyone has a problem against using git instead of su

Re: [Gambas-user] R: how to generation 12 random letters (A-Z and 0-9)

2015-05-30 Thread Jussi Lahtinen
You can write that in nicer way with rand() function, than rnd() function. But that doesn't really matter, your code works anyway. Jussi On Sat, May 30, 2015 at 3:12 PM, Ru Vuott wrote: > Hello, > > I propose: > > > Public Sub Button1_Click() > > Dim j As Byte > Dim s As String > > For j

[Gambas-user] ?????? R: how to generation 12 random letters (A-Z and 0-9)

2015-05-30 Thread tsukuba GIMP user
oh thanks you helping :-D = Hello, I propose: Public Sub Button1_Click() Dim j As Byte Dim s As String For j = 1 To 12 If Fix(Rnd(0, 2)) Then s &= Chr(Rnd(48, 58)) Else s &= Chr(Rnd(65, 91)) Endif Nex

[Gambas-user] R: how to generation 12 random letters (A-Z and 0-9)

2015-05-30 Thread Ru Vuott
Hello, I propose: Public Sub Button1_Click() Dim j As Byte Dim s As String For j = 1 To 12 If Fix(Rnd(0, 2)) Then s &= Chr(Rnd(48, 58)) Else s &= Chr(Rnd(65, 91)) Endif Next Print s End Sab 30/5/15, tsukuba GI

Re: [Gambas-user] ERROR Segmentation fault (core dumped)

2015-05-30 Thread Jørn Erik Mørne
Hmm only difference is I have 64-bit. Any recently added dependencies? Den 30. mai 2015 00:34, skrev Benoît Minisini: > Le 29/05/2015 21:45, Jørn Erik Mørne a écrit : >> I have it installed though >> > So I have compiled and installed the latest trunk on a Mint 17.1 64 bits > and on a ArchLinu

[Gambas-user] how to generation 12 random letters (A-Z and 0-9)

2015-05-30 Thread tsukuba GIMP user
i want when i click button (button_1) LCDpanl(LCDLabel1) will be Generation 12 random letters how to do?? -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https: