Re: [Gambas-user] Cannot find Gambas on Suse Leap 42.2

2017-10-30 Thread Matti
Here, everything is ok with the repo: http://download.opensuse.org/repositories/Education/openSUSE_Leap_42.2/ If it still doesn't work, you should write to the new mailing-list. Regards Matti Am 30.10.2017 um 17:09 schrieb Rolf-Werner Eilert: I had it installed twice on two different

Re: [Gambas-user] why this could not be? error in runtime?

2017-07-29 Thread Matti
YOU complainig-shouting about a typo! Am 29.07.2017 um 05:53 schrieb PICCORO McKAY Lenz: HEY TONY; ITS PICCORO; NOT PICARO! GR in the playground wprks perfectly, i not have 3.10, but in the job i have 3.1 and at my home 3.5 its a bug in 3.9 and 3.8, *with 3.1 works perfectly in debian

Re: [Gambas-user] New Gambas on Suse

2017-07-20 Thread Matti
Hi Rolf, someone is putting the Gambas updates into the Suse repo. Why should there be an exception with 3.10? We'll see soon... Matti Am 20.07.2017 um 15:35 schrieb Rolf-Werner Eilert: Hi folks, Now that the next version of Gambas is en route, I wonder whether it will come on Suse Leap

Re: [Gambas-user] Split: misleading Wiki

2017-05-23 Thread Matti
Very good explanation, thank you. Am 22.05.2017 um 23:33 schrieb d4t4f...@gmail.com: > Matti > > Your string has 3 substrings when split with SPLIT (STRING, "#"): > > Index 0: "Hello" > Index 1: "" > Index 2: "12345" > > It is doc

Re: [Gambas-user] Split: misleading Wiki

2017-05-22 Thread Matti
Ok, thank you, Tobi. I'll have to start thinking again (but not tonight anymore). Matti Am 22.05.2017 um 22:17 schrieb Tobias Boege: > On Mon, 22 May 2017, Matti wrote: >> If I have a string sStr="hello##12345" and want to split it: >> >> Dim aSplit as

[Gambas-user] Split: misleading Wiki

2017-05-22 Thread Matti
rray = Split ( String [ , Separators , Escape , IgnoreVoid , KeepEscape ] )" Where "IgnoreVoid" means "a boolean that tells Split() *not* to return void elements." By trial and error I found out that "IgnoreVoid" has to be set to 'True' to

Re: [Gambas-user] ComboBox as a SearchBox?

2017-05-19 Thread Matti
Thanks, Christof. This looks good. I'll have a look at it. Matti Am 19.05.2017 um 08:59 schrieb Christof Thalhofer: > Hello Matti, > > Am 18.05.2017 um 20:18 schrieb Matti: >> My idea was: entering the beginning of a word in a ComboBox, the list should >> display all

[Gambas-user] ComboBox as a SearchBox?

2017-05-18 Thread Matti
My idea was: entering the beginning of a word in a ComboBox, the list should display all the possible matches, then either select from the list or narrow the search by entering more letters. This works perfect - but when I fill the list with the matches, my search string (= ComboBox.Text) is

Re: [Gambas-user] String[].Find finds nothing

2017-05-16 Thread Matti
with Mode=gb.Like=4. It's faster than doing the For...Next work yourself. 3. But gb.Like doesn't mean it finds anything matching your first characters, case insensitive. You have to use 'i = MyStringArray.Find(SearchString & "*", gb.Like, 0). Regards, Matti Am 10.05.2017 um 18:57 schr

Re: [Gambas-user] String[].Find finds nothing

2017-05-10 Thread Matti
heuristic guess for the index. > > > Jussi > > On Wed, May 10, 2017 at 10:18 PM, Matti <matti.e...@vodafone.de> wrote: > >> Yes. But as I don't know [iIndex], I have to iterate through the (huge) >> array with 'For...Next'. >> I hoped to make it faster with '

Re: [Gambas-user] String[].Find finds nothing

2017-05-10 Thread Matti
Yes. But as I don't know [iIndex], I have to iterate through the (huge) array with 'For...Next'. I hoped to make it faster with 'Find'. Am 10.05.2017 um 20:59 schrieb Jussi Lahtinen: > For that use; String.InStr(sYourArray[iIndex], "Chr") > > > Jussi > > > On Wed,

Re: [Gambas-user] String[].Find finds nothing

2017-05-10 Thread Matti
In your array there isn't a Value "Chr", that is what you search, so always > returns -1 > > > Best Regars > > 2017-05-10 18:57 GMT+02:00 Matti <matti.e...@vodafone.de>: > >> I tried to search an array with the 'Find' function instead of >> 'For...Next'

[Gambas-user] String[].Find finds nothing

2017-05-10 Thread Matti
annot be found, -1 is returned." But I can do what I want, I always get '-1'. No positive result ever. Attached is a tiny project that should show this behaviour. Where is my mistake? Thanks in advance Matti Gambas 3.9.2 FindString-0.0.1.tar.gz Description: applic

Re: [Gambas-user] How to dynamically add & populate variable number of tabs at runtime?

2017-04-18 Thread Matti
Hi Lee, first of all, you have to give the GridView a X, Y, width and height. Otherwise it's there but doesn't show. To reference the GridViews, create an array of them and address them as GridView[0], GridView[1] and so on. The [i] is the number of the TabStrip index. Here is an example of

Re: [Gambas-user] EXEC progress

2017-03-22 Thread Matti
I don't know exactly what you want. My idea would be to show a StatusBar saying which EXEC command is called. And a ProgressBar after each EXEC command with an estimated value of progress. Or am I completely wrong? Am 22.03.2017 um 18:01 schrieb bill-lancaster: > I have a series of EXEC command

Re: [Gambas-user] Mouse move ...

2017-03-21 Thread Matti
Set 'Tracking' = True. Then: Public Sub Form_MouseMove() Print Mouse.X, Mouse.Y End Am 21.03.2017 um 11:16 schrieb Riccardo: > Is there a way to attach (or modify) the mouse move event to an object such > that it is activated without the left mouse button being pressed? I want to > monitor

[Gambas-user] To the Wishlist: ListView.Sorted

2017-03-15 Thread Matti
' and 'descending', it would be great! Matti -- Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot ___ Gambas-user

Re: [Gambas-user] Sort multidimensional array?

2017-02-06 Thread Matti
ray you have to sort. Example for the workaround is attatched. Look at the FMain 'mnuSortA' and 'mnuSortT' Subs. Hope this helps, but I'm really not up to date. Matti Am 06.02.2017 um 22:23 schrieb Riccardo: Hi, Is it possible to use the array.sort() method on a two-dimensional array?

Re: [Gambas-user] ImageView Content Scaling

2016-07-06 Thread Matti
Hi Nigel, have you tried PictureBox instead of ImageView? Without digging deeper, I remember to have used PictureBoxes with no problem of zooming. Matti Am 06.07.2016 um 20:16 schrieb Nigel Verity: > Hi > > I need to display images on a form with some descriptive text. > > Th

Re: [Gambas-user] Gambas mime type

2016-04-06 Thread Matti
Lee, I sent a mail this morning to thank you - but it never reached the list (used the wrong mail account). I followed your first fix, and everything is working as expected. So, don't care, and thanks again! Matti Am 06.04.2016 um 17:37 schrieb T Lee Davidson: > Matti, > > I was wr

[Gambas-user] Gambas mime type

2016-04-05 Thread Matti
Comment[af]=Gambas Dokument ... #SUSE-Overwrite Comment[sr@Latn]=Gambas dokument ... X-SuSE-translate=false Anybody an idea what to do? Thanks, Matti -- ___ Gambas-user mailing list

Re: [Gambas-user] New website design in beta version

2015-10-26 Thread Matti
"You still have to login both on the wiki..." Why login on the wiki? The wiki works without login now, and that's correct. Or do you want to reject people who are searching for something? Am 26.10.2015 um 15:49 schrieb Benoît Minisini: > Hi, > > I have uploaded a beta version of a new website

Re: [Gambas-user] New website design in beta version

2015-10-26 Thread Matti
yes, of course, ok. Am 26.10.2015 um 21:54 schrieb Benoît Minisini: > Le 26/10/2015 21:51, Matti a écrit : >> "You still have to login both on the wiki..." >> Why login on the wiki? >> The wiki works without login now, and that's correct. >> Or do you wa

[Gambas-user] WebView, again

2015-10-15 Thread Matti
This is driving me crazy: I have to retrieve the HTML tags that the actual cursor position is inside. For example: '' or '' or 'https://lists.sourceforge.net/lists/listinfo/gambas-user

Re: [Gambas-user] More Questions about WebView

2015-10-13 Thread Matti
Yes, yes, you are right :-[ . But often, when I think something is unusual, I search www instead of YaSt... I will remember. Am 13.10.2015 um 22:06 schrieb Moviga Technologies: > > > Hah! So, where do you normally look when you look for packages :) >

Re: [Gambas-user] More Questions about WebView

2015-10-13 Thread Matti
Hmm. Yes, maybe. But I spent almost 1 hour now trying to download this and getting it to work. Without luck. It's very old, and the binary doesn't react to anything... I imagine something that a possible user of my program coulld use, too. Am 13.10.2015 um 19:37 schrieb Moviga Technologies: >

[Gambas-user] More Questions about WebView

2015-10-13 Thread Matti
1. Everything I write into WebView using '.Eval("document.execCommand('insertHTML'...)' is written in the source code in one line. There is no formatting at all, and '\n' etc are not accepted. So, the whole document from to is just one line, including text and tables and and... The HTML

[Gambas-user] Question about WebView

2015-10-06 Thread Matti
for example uses a tiny anchor icon (see image). Has anyone an idea how this could be done? The icon can't be placed in the document, because it has to show only in editing mode. WebView would have to 'translate' anchor tabs into an icon on the surface. Thanks for hints Matti

Re: [Gambas-user] Question about TabStrip (or TabPanel)

2015-09-28 Thread Matti
I really missed something. Thanks, Tobi! Am 28.09.2015 um 19:34 schrieb Tobias Boege: > On Mon, 28 Sep 2015, Matti wrote: >> Every Tab of TabStrip has an own "Text" property. >> Wouldn't it be useful to have a "Tag" property, too, for each Tab, instead >>

[Gambas-user] Question about TabStrip (or TabPanel)

2015-09-28 Thread Matti
to the specific Tab, and "Tag" would be nice there. Or am I missing something? Regards, Matti -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lis

[Gambas-user] Examples

2015-09-23 Thread Matti
to the software farm? Newbies and Oldbies could learn how to... Regards Matti -- Monitor Your Dynamic Infrastructure at Any Scale With Datadog! Get real-time metrics from all of your servers, apps and tools in one place

Re: [Gambas-user] : why this code not working

2015-07-14 Thread Matti
Now, you declare $dbclick, but you don't set a value to it. So, every time PictureBox1_MouseDown() starts, $dbclick gets the value 1. Try: Private $dbclick as Integer = 0 Am 14.07.2015 um 21:01 schrieb tsukuba GIMP user: here is ' Gambas class file ' Private $dbclick As Integer

Re: [Gambas-user] Settings

2014-07-27 Thread Matti
Have a look at http://gambaswiki.org/wiki/comp/gb.settings for the structure of the settings file. And look at http://gambaswiki.org/wiki/comp/gb.settings/settings how to save a value. So, the syntax is Settings[High_Score/xxx] = HighScore. Regards, Matti Am 27.07.2014 05:02, schrieb Shane

Re: [Gambas-user] extended Combobox

2014-05-26 Thread Matti
+1 That's exactly what I need. I made a custom ComboBox that allows searching and has a key - but if it would be implemented, it would be shurely better and faster. Am 25.05.2014 21:12, schrieb Karl Reinl: Salut, I need an extended Combobox, no sorry I would like to have an extended Combobox,

Re: [Gambas-user] gambas 3.5.3 update

2014-04-28 Thread Matti
If exiftools is not in your repositories, you can get it here: http://www.sno.phy.queensu.ca/~phil/exiftool/install.html#Unix Am 28.04.2014 20:49, schrieb Larry Moore: Using ... sudo add-apt-repository ppa:nemh/gambas3 sudo apt-get update sudo apt-get install gambas3 ​ ... I was​ able to

[Gambas-user] Building a custom MyComboBox

2014-03-03 Thread Matti
that inherits ListBox http://gambasdoc.org/help/comp/gb.qt/listbox?view but allows to associate a tag with each list item. That's exactly what I'd need for MyComboBox: each list item with a tag (ID from a database). Could someone give me a hint how to do that? Thanks, Matti

Re: [Gambas-user] Building a custom MyComboBox

2014-03-03 Thread Matti
*_* *Lic. Daniel Quintero Rojas* *¡Saludos desde México!* On Mon, Mar 3, 2014 at 1:55 PM, Tobias Boege tabo...@gmail.com wrote: On Mon, 03 Mar 2014, Matti wrote: I'm playing around with a ComboBox that should have some special features. Looked into the sources and found out how

Re: [Gambas-user] Building a custom MyComboBox

2014-03-03 Thread Matti
Aha! Another learning progress. Am 03.03.2014 21:48, schrieb Tobias Boege: Variant can contain anything, even objects. -- Subversion Kills Productivity. Get off Subversion Make the Move to Perforce. With Perforce,

Re: [Gambas-user] CheckBox

2014-02-15 Thread Matti
' synonymous for 'Click' would be nice to catch them all in one event. Am 14.02.2014 17:37, schrieb Benoît Minisini: Le 12/02/2014 18:56, Matti a écrit : Why doesn't have the CheckBox a 'Change' event? Would be very handy to use in an action group with other controls, to catch if the user made

Re: [Gambas-user] ComboBox: Detect if the button was clicked

2014-02-15 Thread Matti
Having a similar problem here. My first thoughts are: Public Sub MyComboBox_Change() Dim i As Integer Dim bFound As Boolean = False For i = 0 To MyComboBox.List.Count - 1 If MyComboBox.Text = Left(MyComboBox.List[i], Len(MyComboBox.Text)) Then bFound = True Exit

[Gambas-user] CheckBox

2014-02-12 Thread Matti
Why doesn't have the CheckBox a 'Change' event? Would be very handy to use in an action group with other controls, to catch if the user made changes. Now, the 'Click' events for CheckBoxes have to be handled separately. Regards Matti

[Gambas-user] To the wishlist

2014-02-06 Thread Matti
be elegant. Regards Matti -- Managing the Performance of Cloud-Based Applications Take advantage of what the Cloud has to offer - Avoid Common Pitfalls. Read the Whitepaper. http://pubads.g.doubleclick.net/gampad/clk?id=121051231iu

Re: [Gambas-user] Issue 508 in gambas: request: specify how many decimal places ValueBox

2014-02-05 Thread Matti
I think, recently I had the same problem, and I understand the request like that: I wanted to display formatted values of a database, without formatting by code. For example, 123 -- 123,00 1647.5 -- 1.647,50 48.356 -- 48,356000 MaskBox doesn't do anything here, it leaves the data as it is.

Re: [Gambas-user] gbx3: unable to find startup file

2014-01-06 Thread Matti
Which repository do you use? Here, with http://download.opensuse.org/repositories/Education/openSUSE_12.3/ there are no problems with the last updates of 3.5.1. Am 06.01.2014 18:27, schrieb wally: On Monday 06 January 2014 18:21:57 wally wrote: Hi, got problem with OpenSuse repository

Re: [Gambas-user] gbx3: unable to find startup file

2014-01-06 Thread Matti
for the svn version to build gb.openal. I removed and the Edu -repo works now again thx On Monday 06 January 2014 19:02:43 Matti wrote: Which repository do you use? Here, with http://download.opensuse.org/repositories/Education/openSUSE_12.3/ there are no problems with the last updates

Re: [Gambas-user] Where are the examples in gambas 3.5.1?

2013-12-01 Thread Matti
. There is a 'versions' tab where you can choose. Then just wait... By the way: How to find out who is maintaining a repo? Would be great to send them a mail that something is wrong. Matti Am 30.11.2013 23:40, schrieb Carl Nilsson: G'day Matti: Now I'm getting confused again! Is not the repository you refer

Re: [Gambas-user] Where are the examples in gambas 3.5.1?

2013-11-29 Thread Matti
Hi Carl, I don't know if this munix9.rpm is still working and up to date. Right now, I can recommend (for 12.3) the repository http://download.opensuse.org/repositories/Education/openSUSE_12.3/ Somebody is doing a good job there, and each stable version seems to be complete. Regards, Matti Am

Re: [Gambas-user] Restructuring the official Gambas examples

2013-04-28 Thread Matti
some little examples for that project, just tell me. Matti Am 28.04.2013 19:30, schrieb Tobias Boege: Hi folks, I'm finally going to write my last A level exam tomorrow. Except the oral exam in June, I have ca. 5 months of spare time until matriculation. Among working here and there, I plan

Re: [Gambas-user] all those bloody dependencies

2013-04-25 Thread Matti
/Education/openSUSE_12.3/ Here, gambas is included (very funny, as a link to this munix9 repo) - but it works! Regards Matti Am 25.04.2013 16:29, schrieb Ron: If you want to build gambas3 from scratch, simply look which packages/libs a known opensuse gambas3 rpm used to build itself. wget

[Gambas-user] openSUSE

2013-04-25 Thread Matti
I would like to edit the information in the wiki about installation of gambas in openSUSE. But my svn commit account isn't accepted here. Could someone give me an account for the wiki, or do we have to wait until Benoit is back again? Regards Matti

[Gambas-user] all those bloody dependencies

2013-04-24 Thread Matti
new how to, I would help here. Matti -- Try New Relic Now We'll Send You this Cool Shirt New Relic is the only SaaS-based application performance monitoring service that delivers powerful full stack analytics. Optimize

Re: [Gambas-user] all those bloody dependencies

2013-04-24 Thread Matti
:21, Matti math.e...@t-online.de a écrit : I'm trying to get the Gambas svn version alive on a new machine. Installed everything that is written on the website as requirements (took about two evenings). Now I'm getting WARNINGs that 17 components can't be compiled because of missing

Re: [Gambas-user] all those bloody dependencies

2013-04-24 Thread Matti
copypaste the command, and it takes few minutes. Jussi On Wed, Apr 24, 2013 at 11:21 PM, Matti math.e...@t-online.de wrote: I'm trying to get the Gambas svn version alive on a new machine. Installed everything that is written on the website as requirements (took about two evenings

Re: [Gambas-user] Doesn't _Resize() resize in a secondary Form ?

2013-01-09 Thread Matti
I don't understand: If you resize FMain, why should the event Form1_Resize() being raised? Maybe I'm completely wrong - could you provide a little example to know what you want to do? Matti Am 09.01.2013 17:46, schrieb Ru Vuott: Hello, my little project has (...besides the FMain form

Re: [Gambas-user] Strange behaviour of Frames

2012-12-20 Thread Matti
controls). Would be kind if other people would try this and give a feedback if this strange thing happens only on my Suse/KDE system. Thanks Matti Am 20.12.2012 09:42, schrieb Benoît Minisini: I can't reproduce that behaviour at all. Do you have some special window manager option that allows you

Re: [Gambas-user] Translator question

2012-12-18 Thread Matti
Can you put an empty space after one of the Ws? W and W can be translated differently. Am 18.12.2012 18:14, schrieb Willy Raets: Hi, I have an application (Gambas 2) where I use Internationalization. Application original is English and translations contain 7 other European languages. In

[Gambas-user] Strange behaviour of Frames

2012-12-17 Thread Matti
, then click again, hold the mouse button down and move the mouse: the Gambas window gets the focus, gets resized (the middle window button), and I move the Gambas window! Very funny. Always reproducable. Regards Matti [System] OperatingSystem=Linux Kernel=3.4.11-2.16-desktop Architecture=i686 Memory

Re: [Gambas-user] Setting all RadioButton's values to false

2012-12-17 Thread Matti
Don't think so. See http://gambasdoc.org/help/comp/gb.qt/radiobutton?v2 RadioButtons are for choosing only one in a group, but always choosing one. If you want to deselect all, you should use CheckBoxes. Am 17.12.2012 21:23, schrieb M. Cs.: Is there a possibility to set all the RadioButton's

Re: [Gambas-user] Setting all RadioButton's values to false

2012-12-17 Thread Matti
Clever. But I don't understand: the RadioBoxes in a container are made for deciding between some defined options. In which situation you could decide to 'none'? E.g. send a document to a printer or export it as a .pdf or something, set the page layout to landscape or portrait, choose between

Re: [Gambas-user] Setting all RadioButton's values to false

2012-12-17 Thread Matti
... or you just could add an 'other' RadioBox: Pet: - Dog - Cat - Parrot - Turtle - Other Am 17.12.2012 22:21, schrieb Matti: Clever. But I don't understand: the RadioBoxes in a container are made for deciding between some defined options. In which situation you could decide to 'none'? E.g

Re: [Gambas-user] FTranslate / btnNext works strange

2012-12-15 Thread Matti
It is better now, btnNext works ok. But when opening a project translation, the cursor now jumps to the last untranslated string. This is no real bug (with btnNext you get to the first one), but not perfect. Matti Am 14.12.2012 02:49, schrieb Benoît Minisini: Le 07/12/2012 21:53, Matti a écrit

Re: [Gambas-user] FTranslate / btnNext works strange - correction

2012-12-15 Thread Matti
No. when opening a project translation, the cursor still jumps to some untranslated or translated string, I can see no pattern. Am 14.12.2012 02:49, schrieb Benoît Minisini: Le 07/12/2012 21:53, Matti a écrit : When I open a project translation, the cursor jumps at random to some

Re: [Gambas-user] Sourceforge upgrade

2012-12-10 Thread Matti
Thank you so much. The import has worked. Would have been boring to do all those translations again... Matti Am 09.12.2012 19:52, schrieb Sebastian Kulesz: I have a backup of the old repository. If you want, i can import your commit to the new repository, then you can just do a fresh checkout

Re: [Gambas-user] IMPORTANT! Sourceforge upgrade

2012-12-09 Thread Matti
? Matti Am 08.12.2012 18:04, schrieb Laurent Carlier: Le samedi 8 décembre 2012 02:30:26 Benoît Minisini a écrit : The information is on https://sourceforge.net/p/gambas/code/ For a read-only access: $ svn checkout svn://svn.code.sf.net/p/gambas/code/gambas/trunk For a read-write access: (I

Re: [Gambas-user] IMPORTANT! Sourceforge upgrade

2012-12-09 Thread Matti
Minisini: Le 09/12/2012 19:17, Matti a écrit : I tried both commands, but I still get the message: //gambas3/5421/trunk' is already a working copy for a different URL svn checkout works, but the old URL isn't changed. 'svn update' and 'svn info' still point to the old URL. Does somebody

Re: [Gambas-user] IMPORTANT! Sourceforge upgrade

2012-12-09 Thread Matti
Whow! That would be great. Let's try! M. Am 09.12.2012 19:52, schrieb Sebastian Kulesz: On Sun, Dec 9, 2012 at 3:46 PM, Matti math.e...@t-online.de wrote: I have a backup of the old repository. If you want, i can import your commit to the new repository, then you can just do a fresh checkout

[Gambas-user] FTranslate / btnNext works strange

2012-12-07 Thread Matti
When I open a project translation, the cursor jumps at random to some not-translated string, not the first one. Same when I use btnNext: mostly not the next one is shown, but the last one. It gets better the more % are translated, but it's irritating. btnPrevious seems to work correctly. Matti

Re: [Gambas-user] gb.jit can't be compiled

2012-11-26 Thread Matti
? Matti Am 26.11.2012 01:13, schrieb Emil Lenngren: It's a pity that almost all linux distributions put the llvm libs in different places. Also, some distributions use the static library, and some of them use a dynamic library. Can you see where your package manager has installed the llvm files

Re: [Gambas-user] gb.jit can't be compiled

2012-11-26 Thread Matti
Ah, thanks, didn't know that. gb.jit obviously wants dynamic libraries. In /trunk/gb.jit/config.log I found: configure:16852: checking for gb.jit libraries configure:16952: result: no configure:16958: WARNING: Unable to find file: libLLVM-3.1.so configure:17008: WARNING: gb.jit is disabled What

Re: [Gambas-user] Issue 361 in gambas: gambas3 r5367 doesn't compile on Ubuntu 10.04LTS/x86

2012-11-25 Thread Matti
Compiles and runs here without problems. [System] OperatingSystem=Linux Kernel=3.4.11-2.16-desktop Architecture=i686 Memory=3052876 kB DistributionVendor=SuSE DistributionRelease=openSUSE 12.2 (i586) VERSION = 12.2 CODENAME = Mantis Desktop=KDE4 Language=de_DE.UTF-8 [Gambas 3] Version=3.3.90

[Gambas-user] rev. 5371: gb.map can't be compiled

2012-11-25 Thread Matti
I get the following complaints: Compiling gb.map... Map.class:12: error: Unknown identifier: MapPoint Compiling Control/Maps/... gbc: error: Component not found: gb.map || || Unable to compile gb.map || Are there any dependencies needed? Matti

[Gambas-user] gb.jit can't be compiled

2012-11-25 Thread Matti
the correct libLLVM for Suse? Thanks Matti -- Monitor your physical, virtual and cloud infrastructure from a single web console. Get in-depth insight into apps, servers, databases, vmware, SAP, cloud infrastructure, etc

Re: [Gambas-user] gb.map

2012-11-22 Thread Matti
That's too bad. Now I'll have to write an App for the Garmin device - the only thing I'm using Windows for in the Out-of-Office-World! :-D Am 22.11.2012 00:27, schrieb Fabien Bodard: This is a new component : gb.map actually it only allow to manage tiled maps

Re: [Gambas-user] Help Browser font

2012-11-15 Thread Matti
): Open .../trunk/app/src/gambas3 In the project, open Sources/Help/FHelpBrowser Change the font of tvwClasses and webHelp Then compile Never tried, it's just an idea... Regards Matti Am 15.11.2012 11:00, schrieb Rolf-Werner Eilert: Is it possible to change the font used in the help browser

[Gambas-user] svn error?

2012-11-15 Thread Matti
I've just committed a translation update, and 'svn commit' was done without asking for username/password. Something wrong here? Matti -- Monitor your physical, virtual and cloud infrastructure from a single web console

[Gambas-user] Translation question

2012-11-14 Thread Matti
that? Thanks, Matti -- Monitor your physical, virtual and cloud infrastructure from a single web console. Get in-depth insight into apps, servers, databases, vmware, SAP, cloud infrastructure, etc. Download 30-day Free Trial

[Gambas-user] IDE Toolbox: a 'left' arrow is missing

2012-11-12 Thread Matti
If the 'properties' window has a width smaller than all the tabs of the toolbox, there is a 'right' arrow to display the 'Container' and 'Special' tab. But once I'm there to the right, there is no way to get back to the left tabs. There is no 'left' arrow, and even if I drag the properties

[Gambas-user] Example 'Painting 3.2.0' doesn't run

2012-11-12 Thread Matti
I get the error that the class 'Form' couldn't be loaded, because: gb.gui: unable to load 'gb.gtk' component Yes, I don't have GTK but QT (rev. 5315), but this example uses the gb.gui component that should switch to the used desktop. And I'm sure it has been working before. ???

Re: [Gambas-user] IDE Toolbox: a 'left' arrow is missing

2012-11-12 Thread Matti
Indeed! Once again something I would never have tried... Am 12.11.2012 20:59, schrieb Benoît Minisini: You can use the mouse wheel to scroll the tabs. -- Monitor your physical, virtual and cloud infrastructure from a

Re: [Gambas-user] Example 'Painting 3.2.0' doesn't run

2012-11-12 Thread Matti
12.11.2012 21:32, schrieb Benoît Minisini: Le 12/11/2012 21:04, Matti a écrit : I get the error that the class 'Form' couldn't be loaded, because: gb.gui: unable to load 'gb.gtk' component Yes, I don't have GTK but QT (rev. 5315), but this example uses the gb.gui component that should switch

[Gambas-user] rev. 5314 compiles, but doesn't run

2012-11-11 Thread Matti
] Not enough arguments. Action._get.229 Matti -- Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today: http://p.sf.net/sfu/appdyn_d2d_nov

Re: [Gambas-user] rev. 5314 compiles, but doesn't run

2012-11-11 Thread Matti
ok, after running 'make clean' and deleting everything related to gambas, it works now again. Am 11.11.2012 19:36, schrieb Matti: Compilation without problems. Just the usual || THESE COMPONENTS ARE DISABLED: || - gb.db.postgresql || - gb.desktop.gnome || - gb.gtk || - gb.gtk.opengl

Re: [Gambas-user] rev. 5314 compiles, but doesn't run

2012-11-11 Thread Matti
Yes, update 5314 - 5315 works now as usual. Am 11.11.2012 20:46, schrieb Benoît Minisini: Le 11/11/2012 20:15, Matti a écrit : ok, after running 'make clean' and deleting everything related to gambas, it works now again. Am 11.11.2012 19:36, schrieb Matti: Compilation without problems

[Gambas-user] gb.image: making things easier causes new wishes

2012-10-15 Thread Matti
be great, instead of writing 'hImg = hImg.Rotate(Rad(180))' Matti -- Don't let slow site performance ruin your business. Deploy New Relic APM Deploy New Relic app performance management and know exactly what is happening inside

Re: [Gambas-user] gb.image: making things easier causes new wishes

2012-10-15 Thread Matti
Indeed, this works. But I would NEVER have the idea to use that syntax! Am 15.10.2012 21:16, schrieb Benoît Minisini: Le 15/10/2012 21:14, Matti a écrit : The new Image.RotateRight (works now) and Image.RotateLeft methods are great, because they are much easier to use than dealing with a copy

[Gambas-user] Bug: Image.RotateRight rotates left

2012-10-11 Thread Matti
gb3, rev 5196, qt Image.RotateLeft and Image.RotateRight is a nice idea, you don't have to care about Rad(-90) etc anymore. But Left and Right produce the same: they always rotate left. A tiny demo is attached. Matti Rotate-0.0.1.tar.gz Description: GNU Zip compressed data

[Gambas-user] gb.net.pop3?

2012-09-28 Thread Matti
In my last update (5196) I got the message || || Unable to compile gb.net.pop3 || with Compiling gb.net.pop3... Component not found: gb.mime What's that? Nothing to find in the docs. -- Got visibility? Most devs has no

Re: [Gambas-user] Installation of Gambas3 in Suse12.2

2012-09-27 Thread Matti
Hi Carl, I guess that the packager forgot a requirement. See http://gambasdoc.org/help/install?v3 So, open YaST2, search for libcurl and install libcurl4 and libcurl-devel. Let's see if this helps. Matti Am 27.09.2012 06:21, schrieb Carl Nilsson: Dear Moderator: I have installed Suse 12.2

Re: [Gambas-user] Inputbox

2012-08-09 Thread Matti
Better open a new thread about gb3 and Mint and Ubuntu, because I don't know anything about that! Am 09.08.2012 20:20, schrieb Cogier: Thanks again Matti-4. I took your advice regarding Gambas3 and I love the new collapsible SUBs and the way that changing a button name automatically changes

Re: [Gambas-user] Inputbox

2012-08-06 Thread Matti
What is your Gambas version and your environment? Here (Gambas 3, OpenSuse 12.1, KDE), the InputBox is correctly centered. But as a workaround, you can easily create a tiny form for the input and open it with 'xyz.ShowModal'. That is surely centered, and it takes about the same amount of code.

[Gambas-user] TAB and TextArea

2012-08-01 Thread Matti
or not. Should the TAB key switch to the next control, should it insert spaces, or should there be an option? Regards Matti -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security

Re: [Gambas-user] TAB and TextArea

2012-08-01 Thread Matti
I agree. It was just the oops-feeling when you move through a form with TAB and don't get further. But then you have the mouse. I think, indentation is more important - leave it this way. Am 01.08.2012 22:45, schrieb Tobias Boege: On Wed, 01 Aug 2012, Matti wrote: Recently

Re: [Gambas-user] Set Tab Focus

2012-07-31 Thread Matti
Just click on the hierarchy tab (at the right of properties). Move the controls up or down to get the order you want. For controls that shouldn't get the focus via TAB, you set the property NoTabFocus to yes. Am 30.07.2012 19:41, schrieb rocko: Is there a way to set the tab focus so it

Re: [Gambas-user] Bug during compilation of the lastest Gambas svn sources rev#4720

2012-05-07 Thread Matti
c_media.c: In function ‘MediaControl_get’: c_media.c:338:17: error: ‘G_VALUE_INIT’ undeclared (first use in this function) That's exactly the same error I get on my openSUSE system. Am 07.05.2012 23:13, schrieb linuxos: Hi Benoit, I have an error during the compilation of the lastest Gambas

Re: [Gambas-user] Dependencies: Documentation needs update

2012-05-04 Thread Matti
Hmm. On openSUSE, these libs are nowhere to find. Not in any repository, not in any RPM-search. Any SUSE user here who solved this? I installed gstreamer-0_10-devel - Include Files and Libraries mandatory for Development, and gstreamer-0_10-plugins-base-devel - Include files and libraries

[Gambas-user] Dependencies: Documentation needs update

2012-05-03 Thread Matti
are the dependencies for the GStreamer media component? Regards Matti -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers

Re: [Gambas-user] Picture/Image with correct aspect ratio (G2)

2012-03-17 Thread Matti
did. Am 16.03.2012 10:34, schrieb Rolf-Werner Eilert: Hi Matti, You are right, but only if the photo is as large as the PictureBox or smaller. If it's larger, the photo's center will be shown, but at its original size, i. e. you will see part of the photo only. After some fiddling, my father

Re: [Gambas-user] Picture/Image with correct aspect ratio (G2)

2012-03-15 Thread Matti
Hi Rolf, Square PictureBox is correct. Stretched has to be set to false. Then just set Alignment to Center (in code: 3). That's all. Matti Am 15.03.2012 10:14, schrieb Rolf-Werner Eilert: Hi folks, this is in Gambas2: On a form, I have a PictureBox which shall show photos in landscape

Re: [Gambas-user] Probem analysing Desktop path

2012-03-06 Thread Matti
Willy, The easiest solution to store some infos would be to use gb.settings. Then you don't have to care about directories at all, gambas does it for you, and you can read/write the infos very easily. See http://gambasdoc.org/help/comp/gb.settings But I don't know what you store in your

Re: [Gambas-user] Was there a masked edit box?

2012-02-28 Thread Matti
Hi Rolf, What is your question? :) Really: Was there...? - I don't remember. From the docs, I don't think so. Or: Is there... in gambas3? - Yes: http://gambasdoc.org/help/comp/gb.form/maskbox?v3 Am 28.02.2012 13:06, schrieb Rolf-Werner Eilert: I faintly remember there was some masked edit

  1   2   3   >