Re: [Gambas-user] gambas3 broken after opensuse 13.1 upgrade; circumvent

2014-07-18 Thread wig
For OpenSUSE 13.1 users: use the munich repository: - uninstall the broken Gambas3 - choose home:munix9:gambas from http://software.opensuse.org/package/gambas3 This installs Gambas 3.5.4-2.2 Build time Sat 12 Jul 2014 09:59:16 PM CEST - examples are included - help files work as well. WiG

[Gambas-user] gambas3 broken after opensuse 13.1 upgrade

2014-07-16 Thread wig
Just to warn other users - after an upgrade of opensuse, gambas3 doesn't start anymore. I was too fast and updated both pc and laptop ... I submitted already to Suse. /usr/bin/gambas3gbx3: unable to find startup file I see gambas3, it is a link to gbx3 (while gambas2 is a link to

Re: [Gambas-user] gambas3 broken after opensuse 13.1 upgrade

2014-07-16 Thread wig
Bodard wrote: Uninstall properly the last gambas version Verify if all the gb... Files bave been removed from /usr/bin And if /usr/lib/gambas3 and it's content is removed too Then try to reinstall Le 16 juil. 2014 12:38, wig w...@noxqs.org a écrit : Just to warn other users - after

Re: [Gambas-user] Translate user interface

2014-06-30 Thread wig
) opened afterwards, so you might want to call it before any forms are opened. I use MMain as startup class, do initialisations, then call FMain from there. As far as I know, the translations themselves are stored as *.po and/or *.mo files in the .lang directory (at least in gb2). success, WiG

[Gambas-user] TableView1_Drop on which row/col?

2014-06-27 Thread wig
that's not the way. I didn't find an example or an answer in mailinglist search, documentation. Thanks for giving me a clue.. WiG -- Open source business process management suite built on Java and Eclipse Turn processes

Re: [Gambas-user] TableView.Clear in Gambas3

2014-06-18 Thread wig
worked on at http://sourceforge.net/projects/garlic3/files/Tools/GbSettingsTool/Archive/ Hope that helps. Greeting, WiG I don't suppose whoever sent in this post originally would email me their mini-project example. I'm using the table view and can't consistantly get the tableview1_save

[Gambas-user] Settings: how to get (unknown) Keys?

2014-06-18 Thread wig
and use settings for my app). This in Gambas 3.4.1 on OpenSuse 13.1/KDE WiG. -- HPCC Systems Open Source Big Data Platform from LexisNexis Risk Solutions Find What Matters Most in Your Big Data with HPCC Systems Open

Re: [Gambas-user] Gambas Future: shift away from Linux?

2013-11-04 Thread wig
I will be one of the first to use the possibility to let users run some gambas app on OSX (not to work on it myself). But if I really have to, I can run in a VM, so I wouldn't ask someone/B. to spent time on it at the cost of the own advances of Gambas on Linux. We have a nice platform:

[Gambas-user] Integrating ChartsClass bar-line-pie for Gambas2

2013-11-03 Thread wig
I have the source code of a class to make charts that I want to use in my gambas 2 application. https://sourceforge.net/projects/chartsclass/ What is the best way to do that? Copy the files of Charts and subclasses: CChart + CChartBar + CChartLine + CChartPie in my project directory? (And then

Re: [Gambas-user] Installing on Mac OSX 10.6.7

2011-06-16 Thread wig
You can install it in a Virtual Machine. I would like a native Gambas version on mac though, but untill then I make a Gambas application available to a mac user via parallels. I installed Parallels, installed Linux with Gambas in it, autostart Gambas in the desktop. It's an extra cost but it

Re: [Gambas-user] Gambas on Suse 11.4

2011-04-14 Thread wig
It was said Gambas doesn't work in openSuse 11.4 and 11.3: 11.3 I can confirm that it does on 11.3. Ik have 11.3 on my laptop with Gambas 2.21. As far as I remember, I added the Educational repository in openSuse's packet manager. Then you can add software, look for gambas2 or gb2. Maybe I

Re: [Gambas-user] let's nominate Gambas

2009-05-25 Thread wig
Is there a preferred category to nominate Gambas for? Best project? Best tool or utility for developers? Best project (or does it still count as best NEW project?) Best project for the enterprise? ...? I know you can select more than one categorie, but maybe it is stronger if we target certain

Re: [Gambas-user] How to write a multilingual application

2009-03-11 Thread wig
and it will be active for new windows, and completely active next program startup. Wig - Dir(.lang) should work at least in the most recent version of Gambas 2. There was a bug in older ones that prevented it from working as expected. Regards, -- Benoît Dear

Re: [Gambas-user] GTK problems (License)

2009-03-09 Thread wig
Older versions: QPL It captures the general meaning of the GNU General Public Licence (GPL), but is incompatible with it (Wikipedia) Later: Trolltech toolkit version 4.0 was released under GPL version 2. (Wikipedia) Version 4.5.0 will be the first release of Qt licensed under the LGPL,

[Gambas-user] Localisation: find available language(s)

2008-12-19 Thread wig
I want to show the available languages (translations) for my project. Is there a way to get the available languages in Gambas like aLanguages = Application.Languages ? Or is it stored as metadata in some file? If not, I understand that in the project directory .. myproject/.lang .. I can find

Re: [Gambas-user] import mysql dump EXEC or SHELL?

2008-12-16 Thread wig
wig wrote: Although I can create table by table from within Gambas with hCon.Databases.Add(sDbName), I wondered if there is a way to import a mysql dump file, so that I can create the tables with data (in one command). Untill now I allways used phpMyAdmin dump/export and import for creating

[Gambas-user] import mysql dump

2008-12-15 Thread wig
Although I can create table by table from within Gambas with hCon.Databases.Add(sDbName), I wondered if there is a way to import a mysql dump file, so that I can create the tables with data (in one command). Untill now I allways used phpMyAdmin dump/export and import for creating the database

[Gambas-user] How to wait until form is closed

2008-10-04 Thread wig
I made two forms in the IDE. I want the form Test2 only to appear after the form Test1 is closed. Can I let the program wait for the first Form to be closed? PUBLIC SUB Main() FormTest1.Show() ' wait till FormTest1 is closed ? FormTest2.Show() ...