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 diff

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 sque

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

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 aSpli

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

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

2017-05-19 Thread Matti
Thanks, Rolf. Good idea. Now, I have set the search string on first position of the list. But something ist still wrong - I'll investigate. Matti Am 19.05.2017 um 08:47 schrieb Rolf-Werner Eilert: > Am 18.05.2017 20:18, schrieb Matti: >> My idea was: entering the beginning of a word

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 ove

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

2017-05-16 Thread Matti
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.201

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

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

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

2017-05-10 Thread Matti
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 : > >> 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
Value in the array. If Value cannot 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 Fin

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 wh

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 li

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 t

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

2017-03-15 Thread Matti
; could have the values 'no', 'ascending' 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

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 t

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

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 w

[Gambas-user] Gambas mime type

2016-04-05 Thread Matti
ument 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

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 w

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 de

Re: [Gambas-user] WebView, again

2015-10-16 Thread Matti
Thanks. I see, I still have to learn Javascript and JQuery in my old age...! Am 15.10.2015 um 23:46 schrieb Moviga Technologies: > > > Perhaps something like this could get you started: > > http://jsfiddle.net/vv9gD/93/ > > Then, read up on traversing the DOM (that's easiest to do with JQuery i

[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-14 Thread Matti
Thank you for the hint. Works fine. Am 13.10.2015 um 19:37 schrieb Moviga Technologies: > > > 1. You can use Tidy HTML through Shell > -- > ___ > Gambas-user mailing list > Ga

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
My fault. Didn't look in my repos (openSuSe 13.2) - and there it is. Will have a look at it tomorrow. Am 13.10.2015 um 21:50 schrieb Moviga Technologies: > > > What distro are you using? It is very strange that tidy is not included > in your repo. I have it on my Arch system, and I see that Ub

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 sourc

[Gambas-user] Question about WebView

2015-10-06 Thread Matti
riffon 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

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

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

2015-09-28 Thread Matti
27; or 'bDirty' to the specific Tab, and "Tag" would be nice there. Or am I missing something? Regards, Matti -- ___ Gambas-user mailing list Gambas-user@lists.so

[Gambas-user] Examples

2015-09-23 Thread Matti
27; examples 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 too

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

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

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 Combob

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

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

Re: [Gambas-user] Building a custom MyComboBox

2014-03-03 Thread Matti
t;ID associated with '" & cboSample.Text & "': " & > cboSample.Tag[cboSample.Index]) >Endif > End > > Regards > > *_____* > *Lic. Daniel Quintero Rojas* > > *¡Saludos desde México!* > > > > On M

Re: [Gambas-user] Building a custom MyComboBox

2014-03-03 Thread Matti
Thanks, Tobi. Sounds plausible, I'll try that. Of course, I'm trying to write this in Gambas - I don't know any other language except VB, but that was long ago... Am 03.03.2014 20:55, schrieb Tobias Boege: > On Mon, 03 Mar 2014, Matti wrote: >> I'm playing around wit

[Gambas-user] Building a custom MyComboBox

2014-03-03 Thread Matti
tBox class 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 hin

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 E

Re: [Gambas-user] CheckBox

2014-02-15 Thread Matti
event. So, a 'Change' 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 ha

[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

[Gambas-user] To the wishlist

2014-02-06 Thread Matti
? Would 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

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

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

2014-01-06 Thread Matti
h provides alure libs and devel 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

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] Where are the examples in gambas 3.5.1?

2013-12-01 Thread Matti
here 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!

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

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

2013-04-28 Thread Matti
bi, if I could write 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 matriculati

[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

Re: [Gambas-user] all those bloody dependencies

2013-04-25 Thread Matti
positories/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

Re: [Gambas-user] all those bloody dependencies

2013-04-24 Thread Matti
p;v3#t9 > > It doesn't require two evenings. Just copy&paste the command, and it takes > few minutes. > > > Jussi > > > > > > On Wed, Apr 24, 2013 at 11:21 PM, Matti wrote: > >> I'm trying to get the Gambas svn version alive on a ne

Re: [Gambas-user] all those bloody dependencies

2013-04-24 Thread Matti
alement, > > Olivier Cruilles > Mail: linu...@club-internet.fr > > Le 24 avr. 2013 à 22:21, Matti 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 >

[Gambas-user] all those bloody dependencies

2013-04-24 Thread Matti
Get all the dependencies for ..."? If I 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

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

Re: [Gambas-user] Strange behaviour of Frames

2012-12-20 Thread Matti
other 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

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 language

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 situatio

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 curre

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

[Gambas-user] Strange behaviour of Frames

2012-12-17 Thread Matti
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] 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 so

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

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 d

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

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 u

Re: [Gambas-user] IMPORTANT! Sourceforge upgrade

2012-12-09 Thread Matti
o tell svn to save the new URL? 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 check

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

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 t

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 ha

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

2012-11-25 Thread Matti
nybody knows where to download 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,

[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

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 Path

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 > > MapViewer1.Map.AddTile("Op

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

Re: [Gambas-user] Help Browser font

2012-11-15 Thread Matti
pile from svn): 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 u

[Gambas-user] Translation question

2012-11-14 Thread Matti
ow to translate 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. Downlo

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

2012-11-12 Thread Matti
od for, anyway? Am 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'

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

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

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

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

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

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

2012-11-11 Thread Matti
unexpected error and must abort. [4] 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

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

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

2012-10-15 Thread Matti
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 h

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

2012-10-11 Thread Matti
t" main_moc.cpp:15:2: error: #error "cannot be used with the include files from this version of Qt." main_moc.cpp:16:2: error: #error "(The moc has changed too much.)" make[5]: *** [gb_qt4_la-main_moc.lo] Fehler 1 No idea what this means. Help? Thanks Matti Am 11.10.2012 22

[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

Re: [Gambas-user] gb.net.pop3?

2012-09-28 Thread Matti
ok, I found it: gmime-2.6 is missing (or gmime-2.4, as in another message). But this should be mentioned in the docs: requirements. Am 28.09.2012 21:33, schrieb Sebastian Kulesz: > On Fri, Sep 28, 2012 at 4:29 PM, Matti wrote: >> In my last update (5196) I got the message >> >

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

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 butto

Re: [Gambas-user] Inputbox

2012-08-07 Thread Matti
Print "User has cancelled." Else Print "The name is " & Me.Tag & "." Endif End The FInput code is: Public Sub btnCancel_Click() FMain.Tag = "" Me.Close End Public Sub btnOK_Click() FMain.Tag = TextBox1.Text Me.Close End Easy,

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.

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

[Gambas-user] TAB and TextArea

2012-08-01 Thread Matti
behaviour 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&

  1   2   3   4   >