[Gambas-user] Update installed package

2015-06-02 Thread fgores
Q: I have made an installation package of my program and installed it locally on my PC. Now I want to install an updated version of the program. How do i do that? Just overwriting the old package did not work... Using ubuntu 10.04lts and Gambas 3.7 Verstuurd vanaf mijn iPad -

[Gambas-user] My Web Site

2015-06-02 Thread Mike Crean
Hi all,  For those that are interested my web site is up again  www.creaniestoys.noip.me please be gentile with it cause it is onlyserved up on a raspberry pi model B+ www.raspberrypi.org a computerabout the size of an iphone 4 The images will be a bit slow downloading 1sttime around, be patient.

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

2015-06-02 Thread Benoît Minisini
Le 03/06/2015 03:08, Benoît Minisini a écrit : > Le 02/06/2015 23:18, Charlie Reinl a écrit : >> Am Dienstag, den 02.06.2015, 21:07 +0200 schrieb Benoît Minisini: >>> Le 02/06/2015 20:52, Jørn Erik Mørne a écrit : The problem persists with me since about 7104 as reported by Herberth. Trie

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

2015-06-02 Thread Benoît Minisini
Le 02/06/2015 23:18, Charlie Reinl a écrit : > Am Dienstag, den 02.06.2015, 21:07 +0200 schrieb Benoît Minisini: >> Le 02/06/2015 20:52, Jørn Erik Mørne a écrit : >>> The problem persists with me since about 7104 as reported by Herberth. >>> Tried on two Arch systems. >>> >> >> Can you recompile an

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

2015-06-02 Thread Charlie Reinl
Am Dienstag, den 02.06.2015, 21:07 +0200 schrieb Benoît Minisini: > Le 02/06/2015 20:52, Jørn Erik Mørne a écrit : > > The problem persists with me since about 7104 as reported by Herberth. > > Tried on two Arch systems. > > > > Can you recompile and reinstall from scratch? I.e. by removing any >

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

2015-06-02 Thread Benoît Minisini
Le 02/06/2015 20:52, Jørn Erik Mørne a écrit : > The problem persists with me since about 7104 as reported by Herberth. > Tried on two Arch systems. > Can you recompile and reinstall from scratch? I.e. by removing any Gambas files installed from a previous compilation. Then can you send me the o

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

2015-06-02 Thread Jørn Erik Mørne
The problem persists with me since about 7104 as reported by Herberth. Tried on two Arch systems. -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.

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

2015-06-02 Thread Gian
Il 02/06/2015 15:28, Paul Horechuk ha scritto: > Just being a bit picky here, but shouldn't that be Rnd(1,36) ? 26 > letters and 10 digits? > > On 15-06-02 08:49 AM, nando wrote: >> Alternate: >> >> Dim j as Byte >> Dim s as String >> >> For j = 1 To 12 >> s &= Mid("ABCDEFGJIJKLMOPQRSTUVWXYZ012

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

2015-06-02 Thread Paul Horechuk
Just being a bit picky here, but shouldn't that be Rnd(1,36) ? 26 letters and 10 digits? On 15-06-02 08:49 AM, nando wrote: > Alternate: > > Dim j as Byte > Dim s as String > > For j = 1 To 12 >s &= Mid("ABCDEFGJIJKLMOPQRSTUVWXYZ0123456789", Int(1, 13), 1) > Next > > Print s > > > --

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

2015-06-02 Thread nando
Alternate: Dim j as Byte Dim s as String For j = 1 To 12 s &= Mid("ABCDEFGJIJKLMOPQRSTUVWXYZ0123456789", Int(1, 13), 1) Next Print s -- Original Message --- From: Jussi Lahtinen To: mailing list for gambas users Sent: Sat, 30 May 2015 17:41:43 +0300 Subject: Re: [Gambas-use