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 us

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 = hConn.Edi

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 cases

[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) togeth

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 t

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

2016-05-24 Thread willy
> > Salut gbWilly, > > if I read well you ran it by cron! > Is it a path problem? Too often seen! The application never run using cron up to now. That is the goal, but it is of little use if the application is not working, as it already goes wrong during testing. But thanks anyway, gbWilly -

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

2016-05-23 Thread willy
o 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 g

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 edit

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

2015-12-15 Thread willy
nt when using "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

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] 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: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 DOCUMENTATIION

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 > d

[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 applicatio

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&from=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

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

Re: [Gambas-user] Wizard question

2015-12-01 Thread willy
On 2015-12-01 14:32, Johny Provoost wrote: > Op 01-12-15 om 12:36 schreef [1]wi...@develop.earthshipeurope.org: > > 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 wh

[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 Cancel

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 -- Go

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

[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] 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) fr

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 up

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, Beno??t Minisini >> >> a ??crit: >>

[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 envir

[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 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 >

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 >

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 unti

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) >>>

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 >

[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 -k option be added to 'dpkg-buildpackage -d -rfakeroot' for

[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 start

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 c

[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 somewher

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

2015-06-11 Thread willy
val.highlight? >> >> Well, I solved the problem by checking gb.eval.highlight in the >> project >> properties and next repackage the project. So, now I know and will >> remember, but others might run into the same problem. >> >> So, I feel something should be

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

2015-06-11 Thread willy
hlight in the project properties and next repackage the project. So, now I know and will remember, but others might run into the same problem. So, I feel something should be done to prevent mistakes like this from happening. But, I leave that up to Benoît to figure out the best solution

[Gambas-user] Bug in Highlight in Gambas 3.7.1

2015-06-10 Thread willy
Hi All, I recently discovered that highlight fdoesn't on Gambas 3.7.1 as it did in previous versions. I have a textEditor application (gbEdit) that uses a Editor (from qt4.ext) and heavily relies on highlight for highlighting Gambas code, difference files, html files, gambas webpages and so on

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

2015-05-19 Thread Willy@develop
Editor still 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 applica

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

2015-05-17 Thread Willy@develop
e(sTemp, "\r\n", "\n") sTemp = Replace(sTemp, "\r", "\n") sTemp = Replace(sTemp, "\n", "\r\n") Case "LF" '\n

[Gambas-user] Question on preserving Windows EOL

2015-05-17 Thread Willy@develop
t can 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 se

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

2015-05-17 Thread Willy@develop
s for explaining. -- 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-th

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 &

[Gambas-user] Categories in Farm Server

2015-05-16 Thread Willy@develop
not be more suited as I see 'Development' 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

Re: [Gambas-user] InnovaDE Preview 0.1.2

2015-05-16 Thread Willy@develop
hat give you Actionable Insights > Deep dive visibility with transaction tracing using APM Insight. > http://ad.doubleclick.net/ddm/clk/290420510;117567292;y > ___ > Gambas-user mailing list > Gambas-user@lists.sourceforge.net > https://list

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

2015-05-16 Thread Willy@develop
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,

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

2015-05-06 Thread Willy@develop
error output you can see this: RPM build errors: File not found: /home/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

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

2015-05-05 Thread Willy@develop
akket 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

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

2015-03-17 Thread Willy Raets
cerned there is no need to hold back the release of Gambas 3.7 Thanks for your cooperation. -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org -- Dive into t

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 Raet

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

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

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" > wrote: > > > > On ma, 2015-03-16 at 09:25 -0500, Lewis Balentine wrote: > > > Have you considered setting up a local PPA. > > > In that wa

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

2015-03-16 Thread Willy Raets
find documentation that makes sense to me and this specific 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

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

2015-03-16 Thread Willy Raets
how to set up a repo, learning how to package Gambas, test the repo and packages and so on... -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org -- Dive into the

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

2015-03-16 Thread Willy Raets
ndows 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 Par

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

2015-03-08 Thread Willy Raets
t; correct? > This is because a ValueBox 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

Re: [Gambas-user] Rpi 2

2015-02-13 Thread Willy Raets
apt-get update > $ sudo apt-get upgrade > $ sudo apt-get install gambas3 > > I have 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 poin

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

2015-01-18 Thread Willy Raets
I can remember it was because my library had version 0.0.0 (or maybe even 0.0.1, can't remeber as it has been a while ago). Try increasing the version of your library and then package again and see what happens. It worked for me. -- Kind regard

Re: [Gambas-user] Column Alignment Property

2015-01-09 Thread Willy Raets
t of trouble, all for nothing... > > It still reports 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)

Re: [Gambas-user] fullscreen

2015-01-05 Thread Willy Raets
(in my experience) run 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 Pa

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

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

[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! T

[Gambas-user] Project gives a Segfault

2014-12-23 Thread Willy Raets
6 SDL=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)

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

2014-12-12 Thread Willy Raets
baswiki.org/wiki/install/ubuntu#t2 If after all this you still have problems with the examples just let us know. -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org -

Re: [Gambas-user] Similar problem compiling 3.6.2

2014-11-13 Thread Willy Raets
bas3-3.6.2# > > 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. -- Ki

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 > > > compil

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. > > &g

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 pack

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

2014-11-11 Thread Willy Raets
__ 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 -

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:/

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 encon

[Gambas-user] gb.report question

2014-10-22 Thread Willy Raets
he ReportLabels from 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://howtogam

Re: [Gambas-user] About SMTP component

2014-10-22 Thread Willy Raets
In bcc > SmtpC.bcc.Add(s) > Next > Endif > SmtpC.Encrypt = Net.SSL > SmtpC.send > > End You can test MailTester and if it works for you compare the code to yours. I have tested this with .png, .tar, .txt and .deb attachments and they are all

Re: [Gambas-user] Upgrading to 3.6

2014-10-19 Thread Willy Raets
tall the last 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.

[Gambas-user] Incomplete documentation in Wiki

2014-10-17 Thread Willy Raets
Hi, The new Spinner control is documented in the Wiki But the Wiki the pages for the new controls SwitchButton, DirBox and FontBox are missing. Maybe someone can take care that these new controls are documented? -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.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 14:28 +0200, Willy Raets wrote:: > I have made a simplified test project where you can replicate the > problem. I used the original form and code from my library and threw out > all unneeded controls and code. Made a small mistake in btnTest_Click() event when ada

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 > >

Re: [Gambas-user] Possible bug in IDE

2014-10-09 Thread Willy Raets
nch Gambas to clear them. > > > > > > On 10/08/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 bro

Re: [Gambas-user] Possible bug in IDE

2014-10-08 Thread Willy Raets
nch Gambas to clear them. > > > > > > On 10/08/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 bro

[Gambas-user] Possible bug in IDE

2014-10-08 Thread Willy Raets
nd Report (if gb.report activated) You see what goes wrong in the filter. This time the filters of Data are kept. So, filters seem to depend on if you first right clicked 'Sources' or 'Data' in the Project browser. -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.o

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 thi

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 Re

[Gambas-user] Question on ComboBox

2014-10-07 Thread Willy Raets
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

Re: [Gambas-user] Question about making packages

2014-10-07 Thread Willy Raets
at distro. I do know that recent versions of Fedora and Mageia have Gambas 3.5.x 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)

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

2014-10-07 Thread Willy Raets
ems local 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

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 > > g

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

2014-10-05 Thread Willy Raets
TK+=libgtk-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://

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. > > > >

[Gambas-user] Question on the .gitignore file

2014-09-26 Thread Willy Raets
.pot files should not be ignored in .gitignore Just wondering? -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org -- Meet PCI DSS 3.0 Compliance Requirements

[Gambas-user] Example: PhotoTouch gives error

2014-09-25 Thread Willy Raets
.so.0.204.0 GTK+3=libgtk-3.so.0.1000.8 GTK+=libgtk-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] 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: > > #,

Re: [Gambas-user] DateBox popup transparency issue

2014-09-23 Thread Willy Raets
Return False Endif Private Function ExtractUnityVersion(TextToParse As String) As String Dim iPosB, iPosE As Integer iPosB = InStr(TextToParse, " ", 1) + 1 iPosE = InStr(TextToParse, "\n", iPosB) Return Trim(Mid$(TextToParse, iPosB, iPosE - iPosB))

  1   2   3   4   5   >