Re: [Gambas-user] Issue 361 in gambas: gambas3 r5367 doesn't compile on Ubuntu 10.04LTS/x86

2012-11-25 Thread gambas
Comment #1 on issue 361 by sebi...@gmail.com: gambas3 r5367 doesn't compile on Ubuntu 10.04LTS/x86 http://code.google.com/p/gambas/issues/detail?id=361 Same crash in the daily builds ppa. Logs: i386: https://launchpadlibrarian.net/123959825/buildlog_ubuntu-lucid-i386.gambas3_3.3.90-0%2Bsvn42

Re: [Gambas-user] Debian repository

2012-11-25 Thread Sebastian Kulesz
On Sun, Nov 25, 2012 at 10:13 PM, Sebastian Kulesz wrote: > > On Sun, Nov 25, 2012 at 4:46 AM, Ian Haywood wrote: > >> On Sun, Nov 25, 2012 at 2:02 PM, Sebastian Kulesz >> wrote: >> >> > If i have enough time, tomorrow i will publish the definitive binary >> > packages for Debian 6 so others can

Re: [Gambas-user] Debian repository

2012-11-25 Thread Sebastian Kulesz
On Sun, Nov 25, 2012 at 4:46 AM, Ian Haywood wrote: > On Sun, Nov 25, 2012 at 2:02 PM, Sebastian Kulesz > wrote: > > > If i have enough time, tomorrow i will publish the definitive binary > > packages for Debian 6 so others can test them, and then move to Unstable. > please publish the source pa

Re: [Gambas-user] gb.jit can't be compiled

2012-11-25 Thread Emil Lenngren
It's a pity that almost all linux distributions put the llvm libs in different places. Also, some distributions use the static library, and some of them use a dynamic library. Can you see where your package manager has installed the llvm files? /Emil 2012/11/25 Matti > Didn't care about this c

Re: [Gambas-user] Issue 287 in gambas: 3.2.1 ./configure issues on 2012-07-15-wheezy-raspbian.zip

2012-11-25 Thread flachyjoe
Hello, The PDFDoc.h error is fixed with libpoppler-private-dev package install. Have fun ! -- View this message in context: http://gambas.8142.n7.nabble.com/Issue-287-in-gambas-3-2-1-configure-issues-on-2012-07-15-wheezy-raspbian-zip-tp31971p40074.html Sent from the gambas-user mailing list ar

Re: [Gambas-user] How to compile with debugging information enabled - compiles but then a coredump

2012-11-25 Thread Richard Terry
Benoit, I've wiped a hard drive this morning, installed just kubuntu 12.04, put on only gambas and its dependencies, compiled successfully with the debugging information and installed valgrind. Can you tell me how to run the webcam example within this to give you the information you need to d

[Gambas-user] Wiki documentation batch

2012-11-25 Thread Tobias Boege
Hi, I just finished documenting the finished classes in gb.data on the wiki and now want to do my part and translate that into German. I felt documenting itself a pain and now the same clicking-around again? To explain: I clicked on the symbol to document, wrote the text, saved, navigated back to

[Gambas-user] gb.jit can't be compiled

2012-11-25 Thread Matti
Didn't care about this component for a while. Now I installed - following the wiki - llvm 3.1-2.3.1 and llvm-devel 3.1-2.3.1 'make' now complains about a missing 'libLLVM-3.1' that can't be found in my (Suse) repos. The informations in the web are a bit confusing. Anybody knows where to download

[Gambas-user] rev. 5371: gb.map can't be compiled

2012-11-25 Thread Matti
I get the following complaints: Compiling gb.map... Map.class:12: error: Unknown identifier: MapPoint Compiling Control/Maps/... gbc: error: Component not found: gb.map || || Unable to compile gb.map || Are there any dependencies needed? Matti --

Re: [Gambas-user] Issue 361 in gambas: gambas3 r5367 doesn't compile on Ubuntu 10.04LTS/x86

2012-11-25 Thread Matti
Compiles and runs here without problems. [System] OperatingSystem=Linux Kernel=3.4.11-2.16-desktop Architecture=i686 Memory=3052876 kB DistributionVendor=SuSE DistributionRelease=openSUSE 12.2 (i586) VERSION = 12.2 CODENAME = Mantis Desktop=KDE4 Language=de_DE.UTF-8 [Gambas 3] Version=3.3.90 Path

Re: [Gambas-user] Issue 352 in gambas: gambas3 XMLReader component generates wrong output (gambas2 was working fine)

2012-11-25 Thread gambas
Comment #5 on issue 352 by uale...@gmail.com: gambas3 XMLReader component generates wrong output (gambas2 was working fine) http://code.google.com/p/gambas/issues/detail?id=352 Thanks Adrien it works perfectly now (it also fixed the "bug" in my gambas2 code - some unwanted xml output).

[Gambas-user] Issue 361 in gambas: gambas3 r5367 doesn't compile on Ubuntu 10.04LTS/x86

2012-11-25 Thread gambas
Status: New Owner: Labels: Version Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 361 by uale...@gmail.com: gambas3 r5367 doesn't compile on Ubuntu 10.04LTS/x86 http://code.google.com/p/gambas/issues/detail?id=361 1) Describe the problem. gambas3 r5367

Re: [Gambas-user] Byte conversion

2012-11-25 Thread Jesus
El 25/11/12 14:45, Tobias Boege escribió: > On Sun, 25 Nov 2012, Jesus wrote: >> Hi >> >> Im trying to do some kind of conversion but can't get it done. >> >> In python I do: >> >> ord(str("\x01")) >> >> Which returns 1 as an integer >> >> How could I get this done in Gambas3? >> >> This is what I'

Re: [Gambas-user] Byte conversion

2012-11-25 Thread Tobias Boege
On Sun, 25 Nov 2012, Jesus wrote: > Hi > > Im trying to do some kind of conversion but can't get it done. > > In python I do: > > ord(str("\x01")) > > Which returns 1 as an integer > > How could I get this done in Gambas3? > > This is what I've tried: > > Asc(Cint(Str("\x01"))) > > but no l

[Gambas-user] R: Byte conversion

2012-11-25 Thread Ru Vuott
Public Sub Button1_Click() Dim intIntero as integer intIntero = Val("&h4b56") Print intIntero End More info in WIKI of italian forum Gambas: http://www.gambas-it.org/wiki/index.php/Da_Esadecimale_a_Decimale Regards vuott --- Dom 25/11/12, Jesus ha scritto: > Da: Jesus > Oggetto: [

[Gambas-user] Byte conversion

2012-11-25 Thread Jesus
Hi Im trying to do some kind of conversion but can't get it done. In python I do: ord(str("\x01")) Which returns 1 as an integer How could I get this done in Gambas3? This is what I've tried: Asc(Cint(Str("\x01"))) but no luck. Seems there is not an specialized function to do the byte conv

Re: [Gambas-user] hsplit.layout settings under gtk

2012-11-25 Thread charlesg
Hi I have noticed that the effect is not apparent if you close the application from the IDE. I can only get the bug by open from IDE, close from application repeated. rgds -- View this message in context: http://gambas.8142.n7.nabble.com/hsplit-layout-settings-under-gtk-tp40036p40062.html S

Re: [Gambas-user] hsplit.layout settings under gtk

2012-11-25 Thread charlesg
Hi Hi I am not sure that video will get through. Here are two screenshots done by simply run,close,run,close. 1st_run.png 2nd_run.png Each time you run the programme (under

Re: [Gambas-user] hsplit.layout settings under gtk

2012-11-25 Thread charlesg
Hi I am using a fresh install of Xubuntu 12.10 but it also happens on Lubuntu 12.04. [System] OperatingSystem=Linux Kernel=3.5.0-18-generic Architecture=i686 Memory=1805260 kB DistributionVendor=Ubuntu DistributionRelease="Ubuntu 12.10" Desktop=Xfce Language=en_GB.UTF-8 [Gambas 3] Version=3.3.90

Re: [Gambas-user] gb.glu is missing Glu.project and Glu.unproject

2012-11-25 Thread Laurent Carlier
Le samedi 24 novembre 2012 14:02:11 Benoît Minisini a écrit : > Le 24/11/2012 12:05, Laurent Carlier a écrit : > > Le jeudi 22 novembre 2012 20:30:41 laurent bernabe a écrit : > >> Hello, > >> > >> I've noticed that the Gb.glu component is missing the two functions > >> project() and unproject(). >

[Gambas-user] Feature request

2012-11-25 Thread M. Cs.
Hello Benoit, this is a repeat of a former request: Would you be so kind to add an option to the Translations's GUI to export only the non-translated strings? I have over 550 strings now in my application and it is quite difficult to handle the translations, except if we could had a list of missing