[Gambas-user] Embed a VM - Keyboard communication

2012-02-28 Thread flynopi
Hi, I executed a Virtual Box machine by EXEC [vboxmanage, startvm, nameOfVM] FOR READ WRITE and embedded it with help of the embedder class. But I cannot do any keyboard input to the vm. mouse clicking is no problem. what's wrong here? Cheers, F -- View this message in context:

Re: [Gambas-user] Toolbar height is wrong

2012-02-28 Thread Benoît Minisini
Le 28/02/2012 11:16, Demosthenes Koptsis a écrit : Hello, i reopen an issue about Toolbar. In attached Project142 there is a form with a toolbar (red bg) and a hbox (green bg). In hbox toolbuttons appears correctly but not in Toolbar. Toolbar in run mode gets a small height and hides the

Re: [Gambas-user] Embed a VM - Keyboard communication

2012-02-28 Thread Benoît Minisini
Le 28/02/2012 11:25, flynopi a écrit : Hi, I executed a Virtual Box machine by EXEC [vboxmanage, startvm, nameOfVM] FOR READ WRITE and embedded it with help of the embedder class. But I cannot do any keyboard input to the vm. mouse clicking is no problem. what's wrong here? Cheers, F

Re: [Gambas-user] Toolbar height is wrong

2012-02-28 Thread Demosthenes Koptsis
should i set any other property to work? Because tlbrMain.Height = Desktop.Scale * 7 does not work. See attached project i changed it. Thanks! On 02/28/2012 12:28 PM, Benoît Minisini wrote: Le 28/02/2012 11:16, Demosthenes Koptsis a écrit : Hello, i reopen an issue about Toolbar. In

Re: [Gambas-user] Toolbar height is wrong

2012-02-28 Thread Benoît Minisini
Le 28/02/2012 11:52, Demosthenes Koptsis a écrit : should i set any other property to work? Because tlbrMain.Height = Desktop.Scale * 7 does not work. See attached project i changed it. Thanks! No, you have no control on the toolbar height. This won't change. But I was wrong in the

Re: [Gambas-user] Toolbar height is wrong

2012-02-28 Thread Demosthenes Koptsis
On 02/28/2012 12:56 PM, Benoît Minisini wrote: Le 28/02/2012 11:52, Demosthenes Koptsis a écrit : should i set any other property to work? Because tlbrMain.Height = Desktop.Scale * 7 does not work. See attached project i changed it. Thanks! No, you have no control on the toolbar height.

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

2012-02-28 Thread Rolf-Werner Eilert
I faintly remember there was some masked edit box in Gambas2, or am I wrong? I mean something where you could set some control chars to define your own way of editing (e. g. hh:mm or ,## € or so). Thanks for your hints... Rolf

[Gambas-user] Gambas3 rpm

2012-02-28 Thread Dick
Hello, Installed the Gambas3 version RPMs from: download.opensuse.org/repositories/Education/openSUSE_12.1/ The package deb needed to be installed as a dependency. Entered gambas3 from the command line and received the following error message: gbx3: no project file in current directory. RPM

[Gambas-user] How to organize dependent lists

2012-02-28 Thread Rolf-Werner Eilert
Hi folks, I would be interested in your opinions. In a project I've got two lists of data and further data which are mutually dependent, such as item 1: item 1 a data 1 aa data 1 ab item 1 b data 1 ba data 1 bb and so on, which could be seen like a tree or

Re: [Gambas-user] Gambas3 make install issue

2012-02-28 Thread Florent THOMAS
Correct. Thanks to Jussi : /Compiling gambas3... gbc: error: Component not found: gb.qt4.webkit/ So, seems like gb.qt4.webkit is mandatory component. And for some reason not all missing dependencies (= not compiled components) are reported in end of configure. Benoit, is this correct? See

Re: [Gambas-user] How to organize dependent lists

2012-02-28 Thread tobi
hi, On Tue, 28 Feb 2012, Rolf-Werner Eilert wrote: Hi folks, I would be interested in your opinions. In a project I've got two lists of data and further data which are mutually dependent, such as item 1: item 1 a data 1 aa data 1 ab item 1 b data 1 ba

Re: [Gambas-user] How to organize dependent lists

2012-02-28 Thread nando
I would do it this way 1) I would make a class for data 1. If contains whatever PRIVATEs you wish 2) I would make an OBJECT[] which hold as many of the above class instances you need 3) I would make an OBJECT[] which hold as many of the above OBJECT[] as you need item 1: OBJECT[] has two

Re: [Gambas-user] How to organize dependent lists

2012-02-28 Thread nando
The second level OBJECT[] actually turns out to be an array of Classes. My experience is people understand the OBJECT[] way because of the container within a container concept. It is the same thing :) -- Original Message --- From: tobi tobiasboeg...@googlemail.com To:

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

[Gambas-user] ?gambas bug dateadd with leap years???

2012-02-28 Thread richard terry
Hi List, Benoit My program crashed today when using dateadd: DateAdd(Now, gb.Year, iNumberOfYears) has worked for eons in my recall system dateAdd using gb.month still works. I reverted back from the latest svn to an older one no difference. Could this be a leap year bug? richard

Re: [Gambas-user] ?gambas bug dateadd with leap years???

2012-02-28 Thread Caveat
Yeah, strange... you can add 12 months (temporary workaround?) but adding a year results in an invalid date error... Print DateAdd(Now, gb.Month, 12) 'OK Print DateAdd(Now, gb.Year, 1) ' Gives invalid date Kind regards, Caveat On Wed, 2012-02-29 at 09:47 +1100, richard terry wrote:

Re: [Gambas-user] ?gambas bug dateadd with leap years???

2012-02-28 Thread Benoît Minisini
Le 29/02/2012 00:08, Caveat a écrit : Yeah, strange... you can add 12 months (temporary workaround?) but adding a year results in an invalid date error... Print DateAdd(Now, gb.Month, 12) 'OK Print DateAdd(Now, gb.Year, 1) ' Gives invalid date Kind regards, Caveat Because

Re: [Gambas-user] ?gambas bug dateadd with leap years???

2012-02-28 Thread Benoît Minisini
Le 29/02/2012 00:34, Benoît Minisini a écrit : Le 29/02/2012 00:08, Caveat a écrit : Yeah, strange... you can add 12 months (temporary workaround?) but adding a year results in an invalid date error... Print DateAdd(Now, gb.Month, 12) 'OK Print DateAdd(Now, gb.Year, 1) ' Gives

Re: [Gambas-user] ?gambas bug dateadd with leap years???

2012-02-28 Thread richard terry
On Wednesday 29 February 2012 10:39:49 Benoît Minisini wrote: Le 29/02/2012 00:34, Benoît Minisini a écrit : Le 29/02/2012 00:08, Caveat a écrit : Yeah, strange... you can add 12 months (temporary workaround?) but adding a year results in an invalid date error... Print DateAdd(Now,

[Gambas-user] gb3: multiple errors

2012-02-28 Thread Kevin Fishburne
I'm using the build from a few days ago (recompiling now) and get this error when trying to create a module in a new or existing project: This application has raised an unexpected error and must abort. [11] Unknown symbol 'Margin' in class 'FileChooser'. FCreateFile.FCreateFile.0 I also get a

Re: [Gambas-user] gb3: multiple errors

2012-02-28 Thread Kevin Fishburne
On 02/29/2012 12:45 AM, Kevin Fishburne wrote: I'm using the build from a few days ago (recompiling now) and get this error when trying to create a module in a new or existing project: This application has raised an unexpected error and must abort. [11] Unknown symbol 'Margin' in class

Re: [Gambas-user] gb3: multiple errors

2012-02-28 Thread Kevin Fishburne
On 02/29/2012 01:13 AM, Kevin Fishburne wrote: On 02/29/2012 12:45 AM, Kevin Fishburne wrote: I'm using the build from a few days ago (recompiling now) and get this error when trying to create a module in a new or existing project: This application has raised an unexpected error and must

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

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