Re: [Gambas-user] TrayIcon control

2008-12-05 Thread Benoit Minisini
On mercredi 3 décembre 2008, Toni wrote: > Hi, > > I'm using the "trayicon" control and I have found a couple of problems > with it. > > If I use "ShowModal" or "ShowDialog" to show a Form within one of its > "events" it happens that: 1. It does'nt prevent the control from getting > new events, and

[Gambas-user] Feature request

2008-12-05 Thread M0E Lnx
I've noticed the radio button has no .Adjust method. This would be nice, because in my case, I have a radio button with text, that when translated to other languages can be quite long. It'd be nice to have it work like the textlabels work with an .adjust method. Cheers! -

Re: [Gambas-user] Gambas2-2.9 Possible bug when running in russian locale

2008-12-05 Thread M0E Lnx
I'm not using a Desktop at all... running JWM with a gb.gtk used in the project.. I did test with ru_RU.utf8 and it works fine that way... but ru_RU does produce the error. On Fri, Dec 5, 2008 at 11:13 AM, Benoit Minisini <[EMAIL PROTECTED]> wrote: > On vendredi 5 décembre 2008, M0E Lnx wrote:

Re: [Gambas-user] Gambas2-2.9 Possible bug when running in russian locale

2008-12-05 Thread Benoit Minisini
On vendredi 5 décembre 2008, M0E Lnx wrote: > Here is the problem. > I have an application which offers different languages to select from > (English, Spanish, and Russian ATM) > > The problem is that when I select russian, I get this error that says > > This application has raised an unexpected er

Re: [Gambas-user] Coordinate system in Gambas Graphics

2008-12-05 Thread Charles Capaday
Grazie, this is the best answer I got, most others seemed to say there was no such thing, which frankly surprised me. Cheers, Dr. Charles Capaday Professor & Director Brain and Movement Lab. Dept. of Anatomy & Physiolog

Re: [Gambas-user] Coordinate system in Gambas Graphics

2008-12-05 Thread Doriano Blengino
Charles Capaday ha scritto: > Thanks draw.point(x,y) is in pixels, not coordinate values of ones coordinate > system, anyway Benoit answered the question there are no commands for > coordinate translation and one has to do it oneself, which is not hard, je > vous remercie! > Hmm, simple line

[Gambas-user] Gambas2-2.9 Possible bug when running in russian locale

2008-12-05 Thread M0E Lnx
Here is the problem. I have an application which offers different languages to select from (English, Spanish, and Russian ATM) The problem is that when I select russian, I get this error that says This application has raised an unexpected error and must abort [31] Unsupported string conversion. S

Re: [Gambas-user] Coordinate system in Gambas Graphics

2008-12-05 Thread Tchekov.Net
I think there are too many possibilities available, so it must be leaved to the programmer to choose which one to use and how to implement - Carthesian, Polar, 3D and also some more exotical... So it is impossible to implement all of them in a programming language. Pixels as expression of physical

Re: [Gambas-user] Coordinate system in Gambas Graphics

2008-12-05 Thread Charles Capaday
Thanks draw.point(x,y) is in pixels, not coordinate values of ones coordinate system, anyway Benoit answered the question there are no commands for coordinate translation and one has to do it oneself, which is not hard, je vous remercie!

Re: [Gambas-user] Coordinate system in Gambas Graphics

2008-12-05 Thread Benoit Minisini
On mercredi 3 décembre 2008, Charles Capaday wrote: > I'm interested in developing a graph object in Gambas to plot points, > curves etc. Are there language statements for coordinate transformations > such as to make, for example, the pixel locations of a rectangle into > x,y coordinate values? > >

Re: [Gambas-user] How to run gambas execute file

2008-12-05 Thread Fabien Bodard
no... just the runtime and libs normally the ide is in separated package. 2008/12/5 Leo Sendra <[EMAIL PROTECTED]>: > Hi all, I have a computer and I want this computer just run a gambas execute > file. No need a Gambas IDE development tool. > So, what should I install to this computer?? > Must

Re: [Gambas-user] Coordinate system in Gambas Graphics

2008-12-05 Thread Fabien Bodard
http://gambasdoc.org/help/comp/gb.qt/draw Draw.begin(drawingarea1) draw.point(x,y) draw.end is it that ??? 2008/12/4 Charles Capaday <[EMAIL PROTECTED]>: > Thanks, this would be a nice feature indeed, however I was not looking for a > component as such. Simply I asked whether the l

Re: [Gambas-user] Small window without gadgets

2008-12-05 Thread Benoit Minisini
On vendredi 5 décembre 2008, Rolf-Werner Eilert wrote: > Nicolas Koch schrieb: > > Rolf, > > > >> The question is simple: Is it possible to make a small window without > >> any gadgets appear and disappear after some seconds showing a small hint > >> such as "you got new messages..."? > > > > Yes.

[Gambas-user] How to run gambas execute file

2008-12-05 Thread Leo Sendra
Hi all, I have a computer and I want this computer just run a gambas execute file. No need a Gambas IDE development tool. So, what should I install to this computer?? Must I install the development tool?? Thanks.. Nikmati chatting lebih sering di blog dan situs web. Gunakan Wizard Pembu

Re: [Gambas-user] Action managment

2008-12-05 Thread Benoit Minisini
On mercredi 3 décembre 2008, David Villalobos Cambronero wrote: > Hi all, I have a problem using Actions. That is what I got: > > I have a form let's call it FMain, in this form I have a work space that I > use to emmbed some others form, Let's suppose I emmbed a form in this work > space, let's ca

Re: [Gambas-user] Small window without gadgets

2008-12-05 Thread Rolf-Werner Eilert
Hi Toni, I found the description, but it won't be found by Gambas here. Do I have to do more than activating gb.form in the components list to get it? Thanks for your help. Rolf Toni schrieb: > Hi Rolf again, > By ballon I meant "gb.form.ballon", a Message like class. > I couldn't get it poin

Re: [Gambas-user] Small window without gadgets

2008-12-05 Thread Rolf-Werner Eilert
Aaargh - I found it, maybe I was somewhat blind... Looks interesting, I'll try around with it. Rolf Toni schrieb: > Hi Rolf again, > By ballon I meant "gb.form.ballon", a Message like class. > I couldn't get it pointing to a Tray Icon, but otherwise I find it > pretty nice and unobtrusive :) >

Re: [Gambas-user] TrayIcon control

2008-12-05 Thread Demosthenes Koptsis
ok back to your code, replace this code PUBLIC SUB ButtonExit_Click() ME.Persistent = FALSE ME.Close END with this one PUBLIC SUB ButtonExit_Click() ME.Persistent = FALSE QUIT END try to quit instead of close form. is that you want? On 12/4/08, Toni <[EMAIL PROTECTED]> wrote: >

Re: [Gambas-user] TrayIcon control

2008-12-05 Thread Demosthenes Koptsis
a note the line ME.Persistent = FALSE is useless if you call QUIT ! On 12/5/08, Demosthenes Koptsis <[EMAIL PROTECTED]> wrote: > ok back to your code, > > replace this code > > PUBLIC SUB ButtonExit_Click() >ME.Persistent = FALSE >ME.Close > END > > > with this one > > PUBLIC SUB ButtonExi