Re: [Gambas-user] Installer questions: How to package up new components?

2016-11-04 Thread willy
On 2016-11-04 11:52, Piper984 wrote: > Hi: > > I would like to deploy an application I've written to a few Ubuntu > 16.04 > machines, but the Project->Make->Installation package utility isn't > functioning the way I'd expect, so would like to get advice on best > method > to deploy. > > I am

Re: [Gambas-user] Conditional edit of a database table

2016-06-19 Thread willy
On 2016-06-18 02:54, Shane wrote: > Are you looking for something like > hConn.Find("clients", "firstname LIKE &1 OR lastname LIKE &1 OR phone > like &1 OR street_name LIKE &1 OR suburb LIKE &1", "%" & s & "%") > except with AND'S No, not looking for like queries just a simple: rResult =

Re: [Gambas-user] Conditional edit of a database table

2016-06-16 Thread willy
On 2016-06-16 22:05, Benoît Minisini wrote: > Le 16/06/2016 21:10, wi...@develop.earthshipeurope.org a écrit : >> On 2016-06-13 16:45, wi...@develop.earthshipeurope.org wrote: >>> Hi all, >>> >>> I have been editing tables successfully using something like: >>> >>> rResult = hConn.Edit("error",

Re: [Gambas-user] Conditional edit of a database table

2016-06-16 Thread willy
On 2016-06-13 16:45, wi...@develop.earthshipeurope.org wrote: > Hi all, > > I have been editing tables successfully using something like: > > rResult = hConn.Edit("error", "id=&1", iId) > > This comes in handy when wanting to edit a record with a certain id and > works just fine for simple

[Gambas-user] Conditional edit of a database table

2016-06-13 Thread willy
Hi all, I have been editing tables successfully using something like: rResult = hConn.Edit("error", "id=&1", iId) This comes in handy when wanting to edit a record with a certain id and works just fine for simple cases. But I have a table where the fields id and company (in table error)

Re: [Gambas-user] showmodal vs show

2016-06-02 Thread willy
On 2016-06-02 21:03, PICCORO McKAY Lenz wrote: i can understand at all! what the difference? i want to pass the control to other form, i have mainform and loginform and i want pass control from loginfrom to mainform but discarting all the memory of the loginform I attached a small project

Re: [Gambas-user] Question about gb.cairo

2016-05-23 Thread willy
sure. No access to the code right now. Anyway thanks for the reply, it is hopeful to know it can work :) Regards, Willy > > Regards > Rolf > > > > Am 23.05.2016 16:31, schrieb wi...@develop.earthshipeurope.org: >> Hi all, >> >> I have written a function to make

[Gambas-user] Question about gb.cairo

2016-05-23 Thread willy
Hi all, I have written a function to make a pdf from data in a mysql database. This function is in a library. A command line application 'PrintKwartaal' uses this function. Goal is to print the pdf on a quarterly base using a cron job on Debain server. The cron job starts the Gambas application

Re: [Gambas-user] Problem finding DataBaseManager

2016-01-10 Thread willy
On 2016-01-10 22:52, Robert Boykin wrote: > I am using Gambas 3.8.4 and can't find the DataBaseManager or any > mention of it in the IDE .  > I am a newbie  trying to learn Gambas > by studying examples from the internet.  Any suggestions? > > Hi Robert, To use databases in Gambas you need to

Re: [Gambas-user] Question on editing database tables

2015-12-19 Thread willy
On 2015-12-19 02:15, zainudin ahmad wrote: > This trick(0=0) worked for sqlite > > "0=0 ORDER BY Code, Date, Amount" > > May be any better idea ? > Thanks, I'll give it a try after the holidays (in 2 weeks) when I am back at work. gbWilly

[Gambas-user] Question on editing database tables

2015-12-16 Thread willy
Hi all, I have used editing on tables multiple times like this for example: rResultEdit = $hConn.Edit("KasAanvullingen", "KassaCode = &1 AND Time = &2 AND Date = &3", sKasAanvulCode, rResultAanvul!Time, rResultAanvul!Date) Now I'm facing a harder one: I have this table and it needs to be

Re: [Gambas-user] Question on gb.gui.qt switcher component and packager

2015-12-15 Thread willy
sing "gb.gui.qt", but that >> exists when using "gb.gui". >> >> Check "gb.gui" instead of "gb.gui.qt", and the packager will create >> for you: >> - One package for your application. >> - One dummy package for each GUI compone

[Gambas-user] Question on gb.gui.qt switcher component and packager

2015-12-14 Thread willy
Hi, As I have been developing my Gambas3 applications mainly (all except 1) with gb.qt4 component. Now, I am facing a problem with the qt5 being rolled out several recent distro's, when at the same time the older LTS (so, still supported distros) are still on qt4. So, packaging my

Re: [Gambas-user] whats different between "left$" and "left" string functions

2015-12-14 Thread willy
On 2015-12-14 22:45, Moviga Technologies wrote: > They are the same. > > Benoît, I've been wanting to ask if we could have an option to turn off > one of the sets? As for me, I do not like the ones with dollar signs, > but they are normally suggested first by the intellisense, and I have > to >

Re: [Gambas-user] whats different between "left$" and "left" string functions

2015-12-14 Thread willy
On 2015-12-14 23:01, PICCORO McKAY Lenz wrote: > i think the problem are again in documentation or some misc-information > > search at documentation seem that the difference are the manipulation > respect set of > > one its for ACII charset and the other seem are for UTF-8 > > BUT

Re: [Gambas-user] whats different between "left$" and "left" string functions

2015-12-14 Thread willy
On 2015-12-14 23:24, Tobias Boege wrote: > On Mon, 14 Dec 2015, wi...@develop.earthshipeurope.org wrote: >> On 2015-12-14 23:01, PICCORO McKAY Lenz wrote: >> > i think the problem are again in documentation or some misc-information >> > >> > search at documentation seem that the difference are the

Re: [Gambas-user] whats different between "left$" and "left" string functions

2015-12-14 Thread willy
On 2015-12-14 23:29, PICCORO McKAY Lenz wrote: > hi Toby > > Jussi has right, the wiki before or after me, has some missing points > to newbie programers > > also the http://gambaswiki.org/wiki/lang/replace page has broken > links! around the gb.Case (also info are ambigous) > > we think gambas

Re: [Gambas-user] [Gambas Bug Tracker] Bug #858: serial port implementation constants are bad and uncompleted!/miscdocumented!

2015-12-04 Thread willy
On 2015-12-04 22:15, bugtrac...@gambaswiki.org wrote: > http://gambaswiki.org/bugtracker/edit?object=BUG.858=L21haW4- > > Comment #3 by PICCORO LENZ MCKAY: > > oh men what a problem, so its difficul to said what are in problem, or > the component itselft or the documentation refers! > > so then

Re: [Gambas-user] Sending a landscape PDF to printer

2015-12-01 Thread willy
On 2015-12-01 15:40, Rolf-Werner Eilert wrote: > Without waiting for an answer, I found a workaround for this: > > pdftk will rotate any landscape documents "1-endwest", so they are > printed as usual. > > If anyone here is interested in the code, you're welcome of course :) > > Regards > Rolf

Re: [Gambas-user] Wizard question

2015-12-01 Thread willy
On 2015-12-01 17:02, Tobias Boege wrote: > On Tue, 01 Dec 2015, wi...@develop.earthshipeurope.org wrote: >> Hi all, >> >> I'm currently working on a Wizard and have a question. >> >> The thing with this specific wizard is that once a user starts the >> wizard, he/she should run through the whole

[Gambas-user] Wizard question

2015-12-01 Thread willy
Hi all, I'm currently working on a Wizard and have a question. The thing with this specific wizard is that once a user starts the wizard, he/she should run through the whole wizard, so no canceling halfway. For this I would need to be able to disable (or even better make invisible) the

Re: [Gambas-user] how to return my version program using a function

2015-11-24 Thread willy
On 2015-11-24 16:24, PICCORO McKAY Lenz wrote: > there's a way to return the number version of a gambas propram without > using I/O acces or file? > You can use Application.Version to show version of your program --

[Gambas-user] Navigation in TableView with keyboard 'Enter'

2015-11-16 Thread willy
Hi all, Is there an simple manner of making an editable TableView only move through 1 Column upon hitting the 'Enter' on keyboard? OR EVEN BETTER make only one column editable instead of the whole table (I assume that would eliminate moving through all non editable fields)? Thanks, gbWilly

Re: [Gambas-user] Navigation in TableView with keyboard 'Enter'

2015-11-16 Thread willy
On 2015-11-16 17:09, wi...@develop.earthshipeurope.org wrote: > Hi all, > > Is there an simple manner of making an editable TableView only move > through 1 Column upon hitting the 'Enter' on keyboard? > > OR EVEN BETTER > > make only one column editable instead of the whole table (I assume that

Re: [Gambas-user] gb.args

2015-11-13 Thread willy
On 2015-11-13 11:55, Fabien Bodard wrote: > Hi, > > I've a big problem as i can't understand the gb.args usage even > with the doc :-/ > > > Is there someone that can give me a tips ... or maybe this class must > be rewritten. Hi Fabien, This is a code snippet (and accompanying notes)

Re: [Gambas-user] Splash sreens in qt4 projects no longer borderless after update to Gambas 3.8.0

2015-09-27 Thread willy
On 2015-08-26 01:19, Benoît Minisini wrote: > Le 25/08/2015 21:12, wi...@develop.earthshipeurope.org a écrit : >> Hi all, >> >> On a testing system (with NO IDE installed) I have several of my >> projects installed (using deb packages made with Gambas 3.5.2). >> When I came back from vacation I

Re: [Gambas-user] Project templates

2015-09-22 Thread willy
On 2015-09-22 21:36, Tobias Boege wrote: > On Sat, 19 Sep 2015, Adrien Prokopowicz wrote: >> Le Sat, 19 Sep 2015 03:51:01 +0200, Beno??t Minisini >> a ??crit: >> >> > Le 19/09/2015 03:26, Adrien Prokopowicz a ??crit : >> >> Le Fri, 18 Sep 2015 13:12:49 +0200,

[Gambas-user] Splash sreens in qt4 projects no longer borderless after update to Gambas 3.8.0

2015-08-25 Thread willy
Hi all, On a testing system (with NO IDE installed) I have several of my projects installed (using deb packages made with Gambas 3.5.2). When I came back from vacation I upgraded the system to Gambas 3.8.0 (from 3.7.1) using Gambas team PPA. Also note that I didn't change theme on the system.

Re: [Gambas-user] Run SmallWiki example with lighttpd

2015-06-30 Thread willy
On 2015-06-30 21:58, Benoît Minisini wrote: Le 30/06/2015 21:42, wi...@develop.earthshipeurope.org a écrit : Hi all, I have been studying the SmallWiki example to get some understanding of how webpages work. It all runs fine from IDE. I have set up a small testing environment (Debian

[Gambas-user] Run SmallWiki example with lighttpd

2015-06-30 Thread willy
Hi all, I have been studying the SmallWiki example to get some understanding of how webpages work. It all runs fine from IDE. I have set up a small testing environment (Debian server) on a different system. I set up lighttpd (just did a default install of it, no extra configuration done). My

Re: [Gambas-user] Feature request

2015-06-19 Thread willy
On 2015-06-19 03:10, Benoît Minisini wrote: Le 19/06/2015 02:40, wi...@develop.earthshipeurope.org a écrit : This is a bug, as the Gambas executable are (or should be) architecture-independant. Can you provide me the i386 and the armhf packages? First, it will have to wait until monday

Re: [Gambas-user] Feature request

2015-06-19 Thread willy
On 2015-06-19 02:12, Benoît Minisini wrote: Le 18/06/2015 23:05, wi...@develop.earthshipeurope.org a écrit : Hi all, I have been looking at the Gambas IDE package code (in app/.src/gambas3/.src/packager folder) In the package module I see that packages for debain/ubuntu are made with:

Re: [Gambas-user] Feature request

2015-06-19 Thread willy
On 2015-06-19 02:12, Benoît Minisini wrote: Le 18/06/2015 23:05, wi...@develop.earthshipeurope.org a écrit : Hi all, I have been looking at the Gambas IDE package code (in app/.src/gambas3/.src/packager folder) In the package module I see that packages for debain/ubuntu are made with:

Re: [Gambas-user] Feature request

2015-06-18 Thread willy
On 2015-06-19 02:12, Benoît Minisini wrote: Le 18/06/2015 23:05, wi...@develop.earthshipeurope.org a écrit : Hi all, I have been looking at the Gambas IDE package code (in app/.src/gambas3/.src/packager folder) In the package module I see that packages for debain/ubuntu are made with:

Re: [Gambas-user] Feature request

2015-06-18 Thread willy
On 2015-06-19 02:40, wi...@develop.earthshipeurope.org wrote: On 2015-06-19 02:12, Benoît Minisini wrote: Le 18/06/2015 23:05, wi...@develop.earthshipeurope.org a écrit : Hi all, I have been looking at the Gambas IDE package code (in app/.src/gambas3/.src/packager folder) In the package

[Gambas-user] Feature request

2015-06-18 Thread willy
Hi all, I have been looking at the Gambas IDE package code (in app/.src/gambas3/.src/packager folder) In the package module I see that packages for debain/ubuntu are made with: dpkg-buildpackage -d -rfakeroot Request 1: Could a simple -kkeyid option be added to 'dpkg-buildpackage -d

[Gambas-user] Gambas repo for Debian jessie

2015-06-17 Thread willy
Hi all, For the GambOS project we are looking to base next edition of GambOS based on Debian jessie (instead of Lubuntu). Big drawback so far is the Debian repositories always being far behind with Gambas3 packages. So, for the last two weeks or so, i have been making and testing pakages

Re: [Gambas-user] Package list and dependencies out of date

2015-06-14 Thread willy
On 2015-06-15 00:03, Benoît Minisini wrote: Le 13/06/2015 21:18, wi...@develop.earthshipeurope.org a écrit : Hi all, Could it be the 'How to package - packagelist' at GambasWiki (http://gambaswiki.org/wiki/howto/package#t8) is a bit outdated. The page has been updated, and the component

[Gambas-user] Package list and dependencies out of date

2015-06-13 Thread willy
Hi all, Could it be the 'How to package - packagelist' at GambasWiki (http://gambaswiki.org/wiki/howto/package#t8) is a bit outdated. Same goes for the 'Compilation and installation - Requirements for development packages' (http://gambaswiki.org/wiki/install#t2). They seem to be stuck

Re: [Gambas-user] Bug in Highlight in Gambas 3.7.1

2015-06-11 Thread willy
to figure out the best solution (if any). Willy (a.k.a. gbWilly) -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo

Re: [Gambas-user] Bug in Highlight in Gambas 3.7.1

2015-06-11 Thread willy
happening. But, I leave that up to Benoît to figure out the best solution (if any). Willy (a.k.a. gbWilly) Ha, ok. So everything occured as expected. When using highlighting, the gb.qt4.ext component tries to load the gb.eval.highlight component automatically, and displays that error

Re: [Gambas-user] Beware of the recent changes in the development version

2015-05-19 Thread Willy@develop
work for TextEditor or would one have to rewrite all? -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org -- One dashboard for servers and applications across

[Gambas-user] Question on preserving Windows EOL

2015-05-17 Thread Willy@develop
do the job (as somehow that often turns out to be the case). Any suggestions? -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org -- One dashboard for servers

Re: [Gambas-user] Question on preserving Windows EOL

2015-05-17 Thread Willy@develop
thought about it. Thanks -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org -- One dashboard for servers and applications across Physical-Virtual-Cloud Widest

Re: [Gambas-user] sdl2 component missing in gambas-team stable PPA!!

2015-05-17 Thread Willy@develop
. -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org -- One dashboard for servers and applications across Physical-Virtual-Cloud Widest out-of-the-box monitoring

Re: [Gambas-user] InnovaDE Preview 0.1.2

2015-05-16 Thread Willy@develop
___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org

[Gambas-user] Categories in Farm Server

2015-05-16 Thread Willy@develop
' more for applications supporting the development of applications. Anyone an opinion on this matter? -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org -- One

Re: [Gambas-user] Categories in Farm Server

2015-05-16 Thread Willy@develop
On za, 2015-05-16 at 16:50 +0200, Benoît Minisini wrote: Le 16/05/2015 16:37, Willy@develop a écrit : Hi all, I feel there are categories missing in the Farm server. I have an text editor I would like to publish and I feel it fits in none of the categories as it is not meant

[Gambas-user] sdl2 component missing in gambas-team stable PPA!!

2015-05-16 Thread Willy@develop
and checked to see that there is indeed no gambas sdl2 component available in Gambas 3.7.1 The Gambas 3.7.0 release notes say: gb.sdl2 and gb.sdl2.audio are two new components for using SDL2. Where they forgotten in making the gambas-team stable PPA for 3.7.0 and up? -- Kind regards, Willy (aka

Re: [Gambas-user] Bug in IDE packager for rpm packages

2015-05-06 Thread Willy@develop
/willy/RPM/BUILDROOT/mybox +-0.0.1-1.i386/usr/bin/'MyBox+' File not found: /home/willy/RPM/BUILDROOT/mybox +-0.0.1-1.i386/usr/share/pixmaps/'MyBox+'.png The single quotes in the path name around the project name MyBox+ seem to cause the trouble. I don't know if Gambas adds them (the single quotes

[Gambas-user] Bug in IDE packager for rpm packages

2015-05-05 Thread Willy@develop
aanmaken. .spec bestand aanmaken. Pakket aanmaken... rpmbuild -ba '/home/willy/RPM/SPECS/mybox+.spec' Executing(%prep): /bin/sh -e /home/willy/RPM/tmp/rpm-tmp.pebI7j + umask 022 + cd /home/willy/RPM/BUILD + rm -rf /home/willy/RPM/BUILDROOT/mybox+-0.0.1-1.i386 + cd /home/willy/RPM/BUILD + rm -rf MyBox

Re: [Gambas-user] URGENT request to people of Gambas stable PPA

2015-03-17 Thread Willy Raets
. -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org -- Dive into the World of Parallel Programming The Go Parallel Website, sponsored by Intel and developed

Re: [Gambas-user] URGENT request to people of Gambas stable PPA

2015-03-17 Thread Willy Raets
On di, 2015-03-17 at 11:35 -0500, Lewis Balentine wrote: Congratulations Willy :-) Thanks, and it only costed me a days work to figure it all out :) I guess this might mean I'll manage to get the migration going next week as planned. On 03/17/2015 11:19 AM, Willy Raets wrote: I managed

[Gambas-user] URGENT request to people of Gambas stable PPA

2015-03-16 Thread Willy Raets
to Gambas/Linux,so this latest Gambas update is really bad timing for me. -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org -- Dive into the World of Parallel

Re: [Gambas-user] URGENT request to people of Gambas stable PPA

2015-03-16 Thread Willy Raets
the repo and packages and so on... -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org -- Dive into the World of Parallel Programming The Go Parallel Website

Re: [Gambas-user] URGENT request to people of Gambas stable PPA

2015-03-16 Thread Willy Raets
On ma, 2015-03-16 at 16:04 +0100, Christof Thalhofer wrote: Hello Willy, Am 16.03.2015 um 15:34 schrieb Willy Raets: I have considered this but IF I would get a PPA working, I do not have the know how to make the needed Gambas packages to go into the PPA. Another thing is the time

Re: [Gambas-user] URGENT request to people of Gambas stable PPA

2015-03-16 Thread Willy Raets
On ma, 2015-03-16 at 16:50 +0100, Christof Thalhofer wrote: Am 16.03.2015 um 16:25 schrieb Willy Raets: On ma, 2015-03-16 at 11:43 -0300, Sebastian Kulesz wrote: You can use the same packages that are now available on the ppa. Just use curl or wget to download them all. There is no need

Re: [Gambas-user] URGENT request to people of Gambas stable PPA

2015-03-16 Thread Willy Raets
On ma, 2015-03-16 at 11:43 -0300, Sebastian Kulesz wrote: On Mar 16, 2015 11:36 AM, Willy Raets wi...@earthshipbelgium.be wrote: On ma, 2015-03-16 at 09:25 -0500, Lewis Balentine wrote: Have you considered setting up a local PPA. In that way you might also control 'what else' gets

Re: [Gambas-user] URGENT request to people of Gambas stable PPA

2015-03-16 Thread Willy Raets
situation. I have like a dozen of bookmarks in my browser on reprepro for a few years now (add new ones when I find them), reread them like every half year and still never managed to completely wrap my head around setting up a repo :) So any help is appreciated. -- Kind regards, Willy (aka gbWilly

Re: [Gambas-user] Possible bug in ValueBox coding of gb.form Component

2015-03-08 Thread Willy Raets
doesn't have a change event. So, the group of ValueBoxes won't have it either. -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org -- Dive into the World

Re: [Gambas-user] Rpi 2

2015-02-13 Thread Willy Raets
tested this with the Pi and Pi2 (clear Raspbian images). Regards, Alex Hi Alex, Very nice and very good to know... I'll update the Gambas wiki for Pin installation to point to your Gambas binaries. -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http

Re: [Gambas-user] Packaging a project with libraries to deb failed

2015-01-18 Thread Willy Raets
). Try increasing the version of your library and then package again and see what happens. It worked for me. -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org

Re: [Gambas-user] Column Alignment Property

2015-01-09 Thread Willy Raets
version 3.6.90 although as I watched the install I clearly saw references to 3.6.99 (see below). ... and the results were the same for all three version tests. Yes it will :) -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org

Re: [Gambas-user] fullscreen

2015-01-05 Thread Willy Raets
it as is. Make sure to backup your source before doing so. -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org -- Dive into the World of Parallel Programming! The Go

Re: [Gambas-user] Gambas translator behaviour (expected or bug?)

2015-01-01 Thread Willy Raets
On do, 2015-01-01 at 10:02 +0100, Benoît Minisini wrote: Le 30/12/2014 23:34, Willy Raets a écrit : On di, 2014-12-30 at 23:04 +0100, Benoît Minisini wrote: Le 30/12/2014 14:57, Willy Raets a écrit : Hi all, I was wondering next about the Gambas translator: When importing .po files

[Gambas-user] Gambas translator behaviour (expected or bug?)

2014-12-30 Thread Willy Raets
this for Gambas 3.6.x So maybe this behaviour is no longer. -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org -- Dive into the World of Parallel Programming! The Go

Re: [Gambas-user] Gambas translator behaviour (expected or bug?)

2014-12-30 Thread Willy Raets
On di, 2014-12-30 at 23:04 +0100, Benoît Minisini wrote: Le 30/12/2014 14:57, Willy Raets a écrit : Hi all, I was wondering next about the Gambas translator: When importing .po files send to me by a translator, only the empty strings get imported. If a translator has changed a earlier

[Gambas-user] Project gives a Segfault

2014-12-23 Thread Willy Raets
=libSDL-1.2.so.0.11.4 If more info is needed, let me know. -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org == output of a failed run == $gdb gbx3 GNU gdb (Ubuntu 7.7.1-0ubuntu5~14.04.2) 7.7.1

Re: [Gambas-user] Install from Ubuntu repo - several issues

2014-12-12 Thread Willy Raets
with the examples just let us know. -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org -- Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate

Re: [Gambas-user] Similar problem compiling 3.6.2

2014-11-13 Thread Willy Raets
# Full logfile attached. /CJ From your log: || Unable to met pkg-config requirement: gmime-2.6 || But gmime 2.4 has been detected! Seems you need a higher version of gmine (2.6 instead of 2.4) If you are running Raspbian you need package libgmime-2.6-dev. -- Kind regards, Willy (aka gbWilly

Re: [Gambas-user] Problem compiling trunk on Debian wheezy

2014-11-11 Thread Willy Raets
/gambas-user -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org -- Comprehensive Server Monitoring with Site24x7. Monitor 10 servers for $9/Month. Get alerted

Re: [Gambas-user] Problem compiling trunk on Debian wheezy

2014-11-11 Thread Willy Raets
On di, 2014-11-11 at 14:33 +0100, Willy Raets wrote: On di, 2014-11-11 at 13:06 +0100, rolf wrote: Hi, I answer myself, to tell that the problem with aclocal is solved - why does the package autoconf is not mentioned as a required package in the howtos? Online Gambas wiki, does have

Re: [Gambas-user] Problem compiling trunk on Debian wheezy

2014-11-11 Thread Willy Raets
On di, 2014-11-11 at 15:26 +0100, rolf wrote: Hi Willy Online Gambas wiki, does have autoconf mentioned as required package!! Has always been there. I copied the packages in the Step 4 section and there is no automake as package named. Now I need a hint how to get gb.media compiled

Re: [Gambas-user] Problem compiling trunk on Debian wheezy

2014-11-11 Thread Willy Raets
On di, 2014-11-11 at 16:43 +0100, rolf wrote: Hi Willy Thanks. I installed it with aptitude install -t wheezy-backports and now it works. Do you have an idea which package I need for llvm. gb.jit does not compile. As Benoît wrote Gambas needs llvm 3.1 or higher So on wheezy

Re: [Gambas-user] gb.report question

2014-10-25 Thread Willy Raets
On do, 2014-10-23 at 07:37 +0200, Fabien Bodard wrote: Van toi sens me en example I'll try to come up an example for you. -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org

Re: [Gambas-user] About SMTP component

2014-10-22 Thread Willy Raets
and they are all nicely added. I also attached a screenshot of one of the test mails received. Hope this will help. -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org MailTester-0.0.2.tar.gz Description: application/compressed-tar

[Gambas-user] gb.report question

2014-10-22 Thread Willy Raets
having their data event 'triggered as that leads to an error because of no result Else Endif So, how to I get the ReportLabels belonging to the rResult to not run their _Data event? -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org

Re: [Gambas-user] About SMTP component

2014-10-22 Thread Willy Raets
On wo, 2014-10-22 at 18:10 +0200, Jorge Carrión wrote: Willy, thank you for your response. With Mailtester the same situation occurs that with my function: If you attach a text file, it is enconded as cuoted printable (what is the same that no enconded as all) and the text from inside

Re: [Gambas-user] Upgrading to 3.6

2014-10-19 Thread Willy Raets
missing packages. You should now have a working Gambas 3.6 version. Thanks for all your work on Gambas. I use it now instead of VB. Gambas is a much better product. I agree on that with you :) -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http

Re: [Gambas-user] SMTP error in Gambas 3.6.0 (rev#6552)

2014-10-15 Thread Willy Raets
On wo, 2014-10-15 at 13:54 +0200, Benoît Minisini wrote: Le 15/10/2014 13:48, Willy Raets a écrit : Hi, I've been testing smpt on Gambas 3.6.0 (rev#6552). I use the exact same settings as I do in my mail client Evolution (see screenshot smtp-settings-evolution.png), but Gambas smtp

Re: [Gambas-user] Possible bug in IDE

2014-10-09 Thread Willy Raets
/2014 10:53 AM, Willy Raets wrote: Try this at home and see what goes wrong. Both 3.5.4 and 3.5.90 (rev#6521) show this behaviour. 1. Open a project in IDE 2. In project browser - right click 'Sources' - select 'New' - select 'Module' - Click tab 'Existing

[Gambas-user] Possible bug in IDE

2014-10-08 Thread Willy Raets
' or 'Data' in the Project browser. -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org -- Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer Achieve

Re: [Gambas-user] Possible bug in IDE

2014-10-08 Thread Willy Raets
/2014 10:53 AM, Willy Raets wrote: Try this at home and see what goes wrong. Both 3.5.4 and 3.5.90 (rev#6521) show this behaviour. 1. Open a project in IDE 2. In project browser - right click 'Sources' - select 'New' - select 'Module' - Click tab 'Existing

Re: [Gambas-user] help generation for local classes

2014-10-07 Thread Willy Raets
classes to be non-creatable if they do not contain a _new() method. pic attached Well, is the class creatable then, if it has no _new() method? -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org

Re: [Gambas-user] Question about making packages

2014-10-07 Thread Willy Raets
in their repositories, so there installing the .rmp should work (presuming you did NOT make the .rpm with Gambas 3.5.90). -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org

[Gambas-user] Question on ComboBox

2014-10-07 Thread Willy Raets
is no longer possible to set!! So, it is either: - a short list (desired) and user can input into combobox (not desired) - a long list (not desired) and user can't input into combobox (desired) -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http

Re: [Gambas-user] Question on ComboBox

2014-10-07 Thread Willy Raets
On di, 2014-10-07 at 11:57 +0200, Willy Raets wrote: When using a combobox, with a lot of elements in there you get a screen full. To me this is NOT very user friendly. I was wondering why it is not allowed to set the MaxLength property for a list that is Read Only? Is there a specific

Re: [Gambas-user] Question on ComboBox

2014-10-07 Thread Willy Raets
On di, 2014-10-07 at 13:39 +0200, Benoît Minisini wrote: Le 07/10/2014 12:13, Willy Raets a écrit : On di, 2014-10-07 at 11:57 +0200, Willy Raets wrote: When using a combobox, with a lot of elements in there you get a screen full. To me this is NOT very user friendly. I

Re: [Gambas-user] Possible bug gb.gtk in Gambas 3.5.90

2014-10-06 Thread Willy Raets
On ma, 2014-10-06 at 02:41 +0200, Benoît Minisini wrote: Le 05/10/2014 23:11, Willy Raets a écrit : Hi, I noticed that with Gambas 3.5.90, the TextBox and TextArea do not accept input from keyboard with gb.gtk on LXDE. It works fine with gb.qt4. I haven't noticed this problem on other

[Gambas-user] Possible bug gb.gtk in Gambas 3.5.90

2014-10-05 Thread Willy Raets
-x11-2.0.so.0.2400.23 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.44.0.0 Qt4=libQtCore.so.4.8.6 SDL=libSDL-1.2.so.0.11.4 -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org

Re: [Gambas-user] Question on the .gitignore file

2014-09-26 Thread Willy Raets
On vr, 2014-09-26 at 19:09 +0200, Benoît Minisini wrote: Le 26/09/2014 17:00, Willy Raets a écrit : Hi, At work I have been playing with setting up a git repository on a server to have some version control on Gambas development. Now I have seen that the Gambas (trunk version) default

Re: [Gambas-user] Request for implementation

2014-09-24 Thread Willy Raets
On di, 2014-09-23 at 02:29 +0200, Benoît Minisini wrote: Le 22/09/2014 01:20, Willy Raets a écrit : Hi all, It would be nice if the translator in IDE could update some extra info in the translation files (.po) Example: #, fuzzy msgid msgstr Project-Id-Version: PACKAGE

Re: [Gambas-user] Request for implementation

2014-09-23 Thread Willy Raets
On di, 2014-09-23 at 02:29 +0200, Benoît Minisini wrote: Le 22/09/2014 01:20, Willy Raets a écrit : Hi all, It would be nice if the translator in IDE could update some extra info in the translation files (.po) Example: #, fuzzy msgid msgstr Project-Id-Version: PACKAGE

Re: [Gambas-user] Installation package(s)

2014-09-23 Thread Willy Raets
in size compared to the two other .debs (being control-gtk_1.0.4-0ubuntu1_all.deb and control-qt4_1.0.4-0ubuntu1_all.deb) -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org

Re: [Gambas-user] Installation package(s)

2014-09-23 Thread Willy Raets
On di, 2014-09-23 at 15:34 +0200, Benoît Minisini wrote: Le 23/09/2014 15:20, Willy Raets a écrit : On di, 2014-09-23 at 04:59 -0700, Charlie wrote: Thanks for the reply but I am still confused. I have tried a few of the .deb files but they don't seem to work so which one

Re: [Gambas-user] Installation package(s)

2014-09-23 Thread Willy Raets
On di, 2014-09-23 at 15:34 +0200, Benoît Minisini wrote: Le 23/09/2014 15:20, Willy Raets a écrit : On di, 2014-09-23 at 04:59 -0700, Charlie wrote: Thanks for the reply but I am still confused. I have tried a few of the .deb files but they don't seem to work so which one

Re: [Gambas-user] DateBox popup transparency issue

2014-09-23 Thread Willy Raets
it doesn't run with all window managers. It does run with: mutter, metacity, kwin and muffin. -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org -- Meet PCI DSS

[Gambas-user] Request for implementation

2014-09-21 Thread Willy Raets
file. What do other Gambas translators or maybe soon to be translators think about this suggestion? -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org

[Gambas-user] Class info contradicts by Gambas added class info

2014-09-19 Thread Willy Raets
a class with Create static NOT show the added Gambas info on being able to be created, or am I misunderstanding something? -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org

Re: [Gambas-user] Class info contradicts by Gambas added class info

2014-09-19 Thread Willy Raets
On vr, 2014-09-19 at 22:30 +0200, Tobias Boege wrote: On Fri, 19 Sep 2014, Willy Raets wrote: Hi all, I have this Gambas library. I have made sure classes have their description (using ''' at the beginning) and public functions/methods have their description (using '' just before

  1   2   3   4   >