[Gambas-user] database question

2009-07-11 Thread Jean-Yves F. Barbier
Hi, Based on Database example, is there a possibility to send parms to another Form? (i.e. table's name fields' names) JY -- Yes, but will I see the EASTER BUNNY in skintight leather at an IRON MAIDEN concert? --

[Gambas-user] Data Base Example updated

2009-07-11 Thread Pino Zollo
Hi, For who is interested... I have updated the example DataReprtExample that comes with GAMBAS . It is available in http:///www.qsl.net/zp4kfx/Linux/GAMBAS Now it works both with MySQL and PostgreSQL. The original can not work with PostgreSQL because in it the table 'user' is reserved.

[Gambas-user] graphic construction question

2009-07-11 Thread Jean-Yves F. Barbier
Hi, When you have a complex form, some parts may be unseen (underneath); when you select this kinda part, the 1st click on top of the whole always reselect the top widget :(even a click on melted hedges does that) Is it possible to change this behaviour (i.e.: only reselect the top widget on

[Gambas-user] database questions

2009-07-11 Thread Jean-Yves F. Barbier
Hi, Based on Database example: * I've noticed that column sorting is only ascending, not descending, is it it normal (and if not, how can I recover the descending order?) * I'd like to have a zone under the databrowser, tied to the sorting column, where I could enter some characters and

Re: [Gambas-user] database question

2009-07-11 Thread Jean-Yves F. Barbier
Werner a écrit : Jean-Yves F. Barbier wrote: Hi, Based on Database example, is there a possibility to send parms to another Form? (i.e. table's name fields' names) JY If you want to access objects on a different form you need to set Menu Project--Properties--Options Form controls are

[Gambas-user] Can I use the mousewheel to control system audio volume?

2009-07-11 Thread Marc Carson
I would like to create a program that increments/decrements the system master audio volume if the mouse's mousewheel is scrolled up/down, in combination with a hotkey (like ctrl+shift+mousewheel). Is this possible in Gambas? I see that the mousewheel can be detected, but I don't see anything

Re: [Gambas-user] Can I use the mousewheel to control system audio volume?

2009-07-11 Thread Stefano Palmeri
Il sabato 11 luglio 2009 23:58:03 Marc Carson ha scritto: I would like to create a program that increments/decrements the system master audio volume if the mouse's mousewheel is scrolled up/down, in combination with a hotkey (like ctrl+shift+mousewheel). Is this possible in Gambas? I see that

[Gambas-user] Simple code editor question

2009-07-11 Thread richard terry
Is it possible to have more than one command on a line using some syntax eg instead of do something if error then do_something_else return end if write this lik do something if error then do_somethingelse : return (or syntax works) Regards Richard

[Gambas-user] Comments on User Constructed Code Tree

2009-07-11 Thread richard terry
I'd recommend anyone using Gambas 2.99 to upgrade to the version allowing a user constructed directory tree. Builds 1990, 2105, 2106 see quite stable, I've been using the 2106 all morning (one gotcha - be careful what you delete - there is a bug in the delete key in the ide - it can sometime

[Gambas-user] where is line ,rectangle , circle

2009-07-11 Thread kobolds
since I don't see it on default gambas control , I wonder had anyone wrote such control ? for example line -- can set the color ,thickness ,shape ,horizontal or vertical rectangle -- can set tickness ,the edge color , fill color and edge shape circle --can set tickness , can set the edge color

Re: [Gambas-user] Can I use the mousewheel to control system audio volume?

2009-07-11 Thread Marc Carson
Stefano Palmeri wrote: Il domenica 12 luglio 2009 01:30:26 Stefano Palmeri ha scritto: PUBLIC SUB Form_MouseWheel() SELECT CASE Mouse.delta CASE 1 PRINT mouse wheel up CASE -1 PRINT mouse wheel down END SELECT END I forgot about