Re: [Gambas-user] [slightly OT] No Problem with Gambas or MySql!

2013-10-06 Thread Bruce
On Sun, 2013-10-06 at 11:55 +0200, Charlie Reinl wrote: > > Salut Bruce, > > how do you look back to 'Lemon Liniment' history ? > > Once the name change occurs we have no reason to look for 'Lemon Liniment' history, it's all under the 'Cherry Zontop' history and that is how anyone would look

[Gambas-user] Different behaviour of dialog

2013-10-06 Thread Willy Raets
Hi all, Someone on the GambasForum stumbled upon a problem with dialog. When trying to help him with an example, the code that worked for me, did not work for him. To explain: Assume you have a folder test in your User.Home: Dialog.Path = User.Home & "/test" If Dialog.SaveFile() Then Return

Re: [Gambas-user] Unable to compile gambas

2013-10-06 Thread Jussi Lahtinen
BTW, do anyone know what is the logic behind these version numbers? Example in those logs QtWebKit >= 4.5.0 is asked, and in Ubuntu the installed version is 2.3.0 which is completely fine. Is there easy way to know what versioning system people are using and how to convert between them? Jussi O

Re: [Gambas-user] Unable to compile gambas

2013-10-06 Thread Jussi Lahtinen
gb.qt4.webkit is mandatory for Gambas IDE. I think you just need libqtwebkit-dev installed. Please read installing instructions (but documentation server seems to be down again). Jussi On Mon, Oct 7, 2013 at 12:04 AM, Πρεκατές Αλέξανδρος wrote: > That fix the : unable to compile gb.map but

Re: [Gambas-user] [slightly OT] No Problem with Gambas or MySql!

2013-10-06 Thread Randall Morgan
If you need some books on relational databases. I can give you private access to my library or digital/scanned books. They will explain things much better that we have here and teach you SQL. Also, know that relational data bases are only one type of data base. There are other types of databases no

Re: [Gambas-user] [slightly OT] No Problem with Gambas or MySql!

2013-10-06 Thread Randall Morgan
A simple explanation as to why you do not repeat data in a rational database. (Very simplistic): Rational or Relational data bases normalize data so that any usage of a single bit of data is stored only once. This allows the data to be edited in only one location and also requires the least amount

Re: [Gambas-user] Unable to compile gambas

2013-10-06 Thread Charlie Reinl
Am Sonntag, den 06.10.2013, 20:07 +0300 schrieb Πρεκατές Αλέξανδρος: > OS: Debain Wheezy (stable) > Version: 3.4.2 > > I try to compile the source with : > > $ ( ./configure -C; make; sudo make install ) > output.txt 2>&1 > > and i take : > ... > || > || Unable to compile gb.map > || Unable to

Re: [Gambas-user] taskbar example ?

2013-10-06 Thread Willy Raets
On Sun, 2013-10-06 at 12:13 +0200, wally wrote: > Hi, > > is there a taskbar-example available somewhere ? > > wally Have a look at: 'How to Gambas 3 - Building GUI Applications'. Amongst other things, a taskbar is build in chapter 11. -- Kind regards, Willy (aka gbWilly) http://gambassho

[Gambas-user] gambas online docs

2013-10-06 Thread wally
the gambas online docs is a pain ! -- October Webinars: Code for Performance Free Intel webinars can help you accelerate application performance. Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most

Re: [Gambas-user] "wrapping" function based on recent Mod thread

2013-10-06 Thread Jesus
El 06/10/13 05:40, Kevin Fishburne escribió: > Jesus Guardon said in the recent thread "Modulo operator returns wrong > results ": > > Hi Paul et all > > When working with some video games, there are a feature called > wraparound or screen wrap. It consists on objects leaving one sid

[Gambas-user] taskbar example ?

2013-10-06 Thread wally
Hi, is there a taskbar-example available somewhere ? wally -- October Webinars: Code for Performance Free Intel webinars can help you accelerate application performance. Explore tips for MPI, OpenMP, advanced profiling,

Re: [Gambas-user] [slightly OT] No Problem with Gambas or MySql!

2013-10-06 Thread Charlie Reinl
Am Sonntag, den 06.10.2013, 10:55 +1030 schrieb Bruce: > On Sun, 2013-10-06 at 00:58 +0200, Willy Raets wrote: > > On Sun, 2013-10-06 at 00:05 +0200, Caveat wrote: > > > > If you wanted to delete one row with values 347 200, then which row > > > > would it be? > > > > > > It *doesn't matter*! Th

Re: [Gambas-user] Issue 465 in gambas: Window initial size error

2013-10-06 Thread gambas
Comment #3 on issue 465 by krisztiankende: Window initial size error http://code.google.com/p/gambas/issues/detail?id=465 So, if use borderless window, the window initial size greater with invisible border size. That's the problem, and this error occurs only on Ubuntu 13.10. -- You received

Re: [Gambas-user] [slightly OT] No Problem with Gambas or MySql!

2013-10-06 Thread Fernando Martins
On 10/06/2013 02:25 AM, Bruce wrote: > postgres, because it properly supports "ON UPDATE CASCADE" constraints > on those tables and their foreign key columns handles it all > internally. Anyway, as I said, [ASIDE] and just one of the reasons for > preferring postgresql. In my experience it's no

Re: [Gambas-user] Problem with Gambas and MySql

2013-10-06 Thread Fernando Martins
On 10/06/2013 12:37 AM, Willy Raets wrote: > But the problem is solved (see other post) using a 'SELECT limit 1' I didn't know about this trick (DELETE LIMIT 1), does this work with other DBMS, e.g., PostgreSQL? LIMIT is not even standard. Fernando -