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.sourceforge.net/lists/listinfo/gambas-user


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 output of the entire configuration, compilation 
and installation process?

Or can you provide ma a ssh access to one of your computer?

-- 
Benoît Minisini

--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


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.
 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 output of the entire configuration, compilation
 and installation process?

 Or can you provide ma a ssh access to one of your computer?


 Salut Benoît,

 here attached the logs and a valgrind.log.

 I made a 'make uninstall', and removed /usr/lib/gambas3
 and /usr/shared/gambas3, before rebuilt from scratch (trunk was also
 removed).

 LUbuntu 14.04.2 LTS  x86


 I need a ssh access to one of your machines, to know what the
 interpreter was doing exaclty when it crashed...


Or you can even share a desktop with the krfb KDE program. I just need a 
terminal and gdb to debug the program.

-- 
Benoît Minisini

--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


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 and reinstall from scratch? I.e. by removing any
 Gambas files installed from a previous compilation.

 Then can you send me the output of the entire configuration, compilation
 and installation process?

 Or can you provide ma a ssh access to one of your computer?


 Salut Benoît,

 here attached the logs and a valgrind.log.

 I made a 'make uninstall', and removed /usr/lib/gambas3
 and /usr/shared/gambas3, before rebuilt from scratch (trunk was also
 removed).

 LUbuntu 14.04.2 LTS  x86


I need a ssh access to one of your machines, to know what the 
interpreter was doing exaclty when it crashed...

-- 
Benoît Minisini

--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


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 
 Gambas files installed from a previous compilation.
 
 Then can you send me the output of the entire configuration, compilation 
 and installation process?
 
 Or can you provide ma a ssh access to one of your computer?
 

Salut Benoît,

here attached the logs and a valgrind.log.

I made a 'make uninstall', and removed /usr/lib/gambas3
and /usr/shared/gambas3, before rebuilt from scratch (trunk was also
removed).  

LUbuntu 14.04.2 LTS  x86


-- 
Amicalement
Charlie


gambas3-7108-#11.tar.gz
Description: application/compressed-tar
--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[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.
RegardsMike
--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[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 mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


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 jussi.lahti...@gmail.com
To: mailing list for gambas users gambas-user@lists.sourceforge.net
Sent: Sat, 30 May 2015 17:41:43 +0300
Subject: Re: [Gambas-user] R: how to generation 12 random letters (A-Z and 0-9)

 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 vu...@yahoo.it wrote:
 
  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 GIMP user tsukubagradua...@foxmail.com ha scritto:
 
   Oggetto: [Gambas-user] how to generation 12 random letters (A-Z and 0-9)
   A: gambas-user gambas-user@lists.sourceforge.net
   Data: Sabato 30 maggio 2015, 11:16
 
   i want when i click button (button_1)
   LCDpanl(LCDLabel1) will be Generation 12 random letters
   how to [UTF-8?]do?
 
   
  --
   ___
   Gambas-user mailing list
   Gambas-user@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/gambas-user
 
 
 
  --
  ___
  Gambas-user mailing list
  Gambas-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/gambas-user
 
 --
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user
--- End of Original Message ---


--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user