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

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

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

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

2014-06-18 Thread wig
ores the table data to a file and reads it back. You can get the code in the state it is / being 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

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

2014-06-18 Thread wig
rdsUseUpperCase > KeywordsUseUpperCase That's all, it stops. (I want to import a Settings file, not use it for my app itself; I know how to save and use settings for my app). This in Gambas 3.4.1 on OpenSuse 13.1/KDE WiG. ---

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

2014-06-27 Thread wig
h, so 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

Re: [Gambas-user] Translate user interface

2014-06-30 Thread wig
ations themselves are stored as *.po and/or *.mo files in the .lang directory (at least in gb2). success, WiG -- Open source business process management suite built on Java and Eclipse Turn processes into business

Re: [Gambas-user] TableView1_Drop on which row/col? Ok: Drop.X

2014-06-30 Thread wig
>> Le 27/06/2014 13:36, wig a écrit : >>> >>> >>> I try to drag the text from a textlabel to a cell on my TableView. >>> >>> How to determine the cell where the drop happened? >>> >>> Public Sub TableView1_Drop() >>> >

Re: [Gambas-user] Array example

2014-07-09 Thread wig
e the element from the second array. print arrData[i] 13 Hope that helps somehow. WiG. On Wednesday 09 July 2014 01:33:16 abbat81 wrote: > Hi > > help me with an array, please > > I heve a 2 column of data > > 2 - 12 > 4 - 13 > 5 - 11 > 8 - 18 > > How

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

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" a écrit :

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

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 ca

[Gambas-user] "automatic" increasing version nr in project?

2008-06-10 Thread wig
Is there a way to let the last part of the version nr in (Project property, General) increase at every compile? (I use gambas 2.x) - Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services

[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() ... --

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

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

2008-12-16 Thread wig
st, sDatabase, sImport] >> >> Everything works fine except the last part that gives the file to read >> from. >> >> I get the general help of mysql, not a specific error like when I change >> the password to a wrong one. >> >> Maybe there is a diffe

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

[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

[Gambas-user] local directorie structure in Source Archive?

2009-01-12 Thread wig
In an open project: Make installation package; Cannot make executable. gba: ERROR: Cannot create temporary archive file: /home/wig/Upload/facs/executables/facs.gambas Indeed this directory does not exist. Not on this machine. This is a freshly installed Mandriva 2009, freshly installed

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,

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

2009-03-09 Thread wig
The language is selected on project start; it depends on the language of the system you work on (shell: echo $LANG) If you programmed your project in English, and made translations for French and German then a French system runs the French version, a German system runs the German version If the l

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

2009-03-11 Thread wig
Main.Show END Where FMain is the real Main screen, which has the right language setting from that moment on ... So you can change the language in the interface and it will be active for new windows, and completely active next program startup. Wig --

[Gambas-user] rounding a half

2024-12-09 Thread wig
und(f, -2) Round(1.055, -2) = 1.05 What should I expect? I used Gambas 3.18.4 System info see attach Kind greetings, Wig system info: [System] Gambas=3.18.4 07c51f51 (stable) OperatingSystem=Linux Distribution=openSUSE Leap 15.4 Kernel=5.14.21-150400.24.100-default Architectu