Re: [Gambas-user] Application logging using SHELL

2011-01-20 Thread vikram
Thank you both for the replies.
I am going to try using SHELL.

Regards,
Vikram Nair



  
--
Protect Your Site and Customers from Malware Attacks
Learn about various malware tactics and how to avoid them. Understand 
malware threats, the impact they can have on your business, and how you 
can protect your company and customers by using code signing.
http://p.sf.net/sfu/oracle-sfdevnl
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Project title not translated

2011-01-20 Thread Emanuele Sottocorno
Hi Benoît
tanks for your answer.
with rev 3479 i noted a strange behaviour.
If you open the project translation form the project title string does
not appear, but if you open the project properties form and close it,
without modify the project title, then that string appear in translation
form and can be translated.
Now if you cleanup the project backup file the project title string
doesn't appear in the translation form and also the strings counter is
decremented by one until you open again the properties window.

Regards,
Emanuele

Il giorno gio, 20/01/2011 alle 02.27 +0100, Benoît Minisini ha scritto:
  Hi, not a bug, a minor issue.
  The project title does not appear in the translation window. This way if
  you set a form Caption = Application.Title it will be in standard
  language, regardless the one you selected.
  Could be correct?
  Regards,
  Emanuele
  
 
 I think it should be fixed in revision #3479 of Gambas 3, but I'm not 100% 
 sure. Can you confirm?
 



--
Protect Your Site and Customers from Malware Attacks
Learn about various malware tactics and how to avoid them. Understand 
malware threats, the impact they can have on your business, and how you 
can protect your company and customers by using code signing.
http://p.sf.net/sfu/oracle-sfdevnl
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] MouseDown event and Gambas3

2011-01-20 Thread Matti
Strange - both of the mouse events work fine here.
gb3 svn 3457
OpenSuse, KDE, qt4


Am 20.01.2011 07:03, schrieb Demosthenes Koptsis:
 i attach the project.
 
 gambas3-svn3442 @ x32
 gambas3-svn3475 @ x64
 
 ubuntu, gtk
 
 none of mouse events are working.
 
 On Thu, 2011-01-20 at 02:27 +0100, Benoît Minisini wrote:
 Good morning,

 the following example is not working in gambas3-svn3475

 --
 ' Gambas class file

 Public Function Color() As Integer

   Dim Red As Integer
   Dim Green As Integer
   Dim Blue As Integer
   Dim sColor As String
   Dim iColor As Integer

   Red = Rnd(0, 256)
   Green = Rnd(0, 256)
   Blue = Rnd(0, 256)

   sColor =   Hex(Red, 2)  Hex(Green, 2)  Hex(Blue, 2)  
   Print sColor
   iColor = Val(sColor)
   Return iColor

 End

 Public Sub Form_MouseDown()

   Me.Background = Color()

 End
 ---

 The code try to change the bgcolor of Form with random colors on mouse
 clicks.

 This example is working in Gambas2.

 I think Form_MouseDown event is not working or i don't know...

 Plase provide a full project as much as possible.

 Regards,

 
 
 
 --
 Protect Your Site and Customers from Malware Attacks
 Learn about various malware tactics and how to avoid them. Understand 
 malware threats, the impact they can have on your business, and how you 
 can protect your company and customers by using code signing.
 http://p.sf.net/sfu/oracle-sfdevnl
 
 
 
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user

--
Protect Your Site and Customers from Malware Attacks
Learn about various malware tactics and how to avoid them. Understand 
malware threats, the impact they can have on your business, and how you 
can protect your company and customers by using code signing.
http://p.sf.net/sfu/oracle-sfdevnl
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] MouseDown event and Gambas3

2011-01-20 Thread Demosthenes Koptsis
here is a video which shows the behavior.

http://www.youtube.com/watch?v=oC-U4N8JH7Y

http://www.mediafire.com/?neds4adkys9w34o


On Thu, 2011-01-20 at 11:25 +0100, Matti wrote:
 Strange - both of the mouse events work fine here.
 gb3 svn 3457
 OpenSuse, KDE, qt4
 
 
 Am 20.01.2011 07:03, schrieb Demosthenes Koptsis:
  i attach the project.
  
  gambas3-svn3442 @ x32
  gambas3-svn3475 @ x64
  
  ubuntu, gtk
  
  none of mouse events are working.
  
  On Thu, 2011-01-20 at 02:27 +0100, Benoît Minisini wrote:
  Good morning,
 
  the following example is not working in gambas3-svn3475
 
  --
  ' Gambas class file
 
  Public Function Color() As Integer
 
Dim Red As Integer
Dim Green As Integer
Dim Blue As Integer
Dim sColor As String
Dim iColor As Integer
 
Red = Rnd(0, 256)
Green = Rnd(0, 256)
Blue = Rnd(0, 256)
 
sColor =   Hex(Red, 2)  Hex(Green, 2)  Hex(Blue, 2)  
Print sColor
iColor = Val(sColor)
Return iColor
 
  End
 
  Public Sub Form_MouseDown()
 
Me.Background = Color()
 
  End
  ---
 
  The code try to change the bgcolor of Form with random colors on mouse
  clicks.
 
  This example is working in Gambas2.
 
  I think Form_MouseDown event is not working or i don't know...
 
  Plase provide a full project as much as possible.
 
  Regards,
 
  
  
  
  --
  Protect Your Site and Customers from Malware Attacks
  Learn about various malware tactics and how to avoid them. Understand 
  malware threats, the impact they can have on your business, and how you 
  can protect your company and customers by using code signing.
  http://p.sf.net/sfu/oracle-sfdevnl
  
  
  
  ___
  Gambas-user mailing list
  Gambas-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/gambas-user
 
 --
 Protect Your Site and Customers from Malware Attacks
 Learn about various malware tactics and how to avoid them. Understand 
 malware threats, the impact they can have on your business, and how you 
 can protect your company and customers by using code signing.
 http://p.sf.net/sfu/oracle-sfdevnl
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user

-- 
Regards,
Demosthenes


--
Protect Your Site and Customers from Malware Attacks
Learn about various malware tactics and how to avoid them. Understand 
malware threats, the impact they can have on your business, and how you 
can protect your company and customers by using code signing.
http://p.sf.net/sfu/oracle-sfdevnl
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] MouseDown event and Gambas3

2011-01-20 Thread Benoît Minisini
 i attach the project.
 
 gambas3-svn3442 @ x32
 gambas3-svn3475 @ x64
 
 ubuntu, gtk
 
 none of mouse events are working.
 

The bug should have been fixed in revision #3480.

Regards,

-- 
Benoît Minisini

--
Protect Your Site and Customers from Malware Attacks
Learn about various malware tactics and how to avoid them. Understand 
malware threats, the impact they can have on your business, and how you 
can protect your company and customers by using code signing.
http://p.sf.net/sfu/oracle-sfdevnl
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Further news on valuebox bugs in Gambas3

2011-01-20 Thread Benoît Minisini
  I reported bugs when a date valuebox is housed in a Vbox. I then moved
  all my controls to a Panel and got the same problems if the
  Panel.Arrangement was set to Vertical.
  I then moved all Valueboxes to a Frame and got no problems. Obviously
  the Frame does not have an Arrangement property.
  
  One further clue. When overcoming the problems, by using a Frame or by
  setting .Arrangement to NONE in Vbox or Panel, the datePicker disappears
  from the ValueBox.
  
  Hope this helps.
 
 I have a pending new ValueBox to integrate, rewritten by Durandal, a
 french gambas user.
 
 I will give news about that as soon as I deal with it.
 
 Regards,

ValueBox has been redesigned. Do you have less problems now?

-- 
Benoît Minisini

--
Protect Your Site and Customers from Malware Attacks
Learn about various malware tactics and how to avoid them. Understand 
malware threats, the impact they can have on your business, and how you 
can protect your company and customers by using code signing.
http://p.sf.net/sfu/oracle-sfdevnl
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] KeyPress event with grid view

2011-01-20 Thread Benoît Minisini
 Thank for reply,
 
 Here is my form. I tried remove all code and run the fresh form but
 nothing happens.
 

Hi,

The bug should be fixed (for Gambas 2) in revision #3481.

Regards,

-- 
Benoît Minisini

--
Protect Your Site and Customers from Malware Attacks
Learn about various malware tactics and how to avoid them. Understand 
malware threats, the impact they can have on your business, and how you 
can protect your company and customers by using code signing.
http://p.sf.net/sfu/oracle-sfdevnl
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] MouseDown event and Gambas3

2011-01-20 Thread Demosthenes Koptsis
yes this bug has been fixed, thanks!

but i think there is one more in event

Form_Menu()

right click of mouse does not show the menu.



On Thu, 2011-01-20 at 13:20 +0100, Benoît Minisini wrote:
  i attach the project.
  
  gambas3-svn3442 @ x32
  gambas3-svn3475 @ x64
  
  ubuntu, gtk
  
  none of mouse events are working.
  
 
 The bug should have been fixed in revision #3480.
 
 Regards,
 

-- 
Regards,
Demosthenes Koptsis.


Project65.tar.gz
Description: application/compressed-tar
--
Protect Your Site and Customers from Malware Attacks
Learn about various malware tactics and how to avoid them. Understand 
malware threats, the impact they can have on your business, and how you 
can protect your company and customers by using code signing.
http://p.sf.net/sfu/oracle-sfdevnl___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Valuebox .Text property

2011-01-20 Thread Emanuele Sottocorno
Hi,

gb3 rev 3479.
ValueBox.Text property has been definitively removed?



--
Protect Your Site and Customers from Malware Attacks
Learn about various malware tactics and how to avoid them. Understand 
malware threats, the impact they can have on your business, and how you 
can protect your company and customers by using code signing.
http://p.sf.net/sfu/oracle-sfdevnl
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] MouseDown event and Gambas3

2011-01-20 Thread Benoît Minisini
 yes this bug has been fixed, thanks!
 
 but i think there is one more in event
 
 Form_Menu()
 
 right click of mouse does not show the menu.
 

Fixed in revison #3485.

Regards,

-- 
Benoît Minisini

--
Protect Your Site and Customers from Malware Attacks
Learn about various malware tactics and how to avoid them. Understand 
malware threats, the impact they can have on your business, and how you 
can protect your company and customers by using code signing.
http://p.sf.net/sfu/oracle-sfdevnl
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Valuebox .Text property

2011-01-20 Thread Benoît Minisini
 Hi,
 
 gb3 rev 3479.
 ValueBox.Text property has been definitively removed?
 

Ahem... Yes. There should be a ValueBox.Text property...

-- 
Benoît Minisini

--
Protect Your Site and Customers from Malware Attacks
Learn about various malware tactics and how to avoid them. Understand 
malware threats, the impact they can have on your business, and how you 
can protect your company and customers by using code signing.
http://p.sf.net/sfu/oracle-sfdevnl
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] 3.0 trunk - makewebsite

2011-01-20 Thread John Spikowski
I'm trying to download the latest for 3.0 version to help the project
out if I can. I was surprised that the trunk includes a copy of the
Gambas website. Is there a way to get the 3.0 release without having to
copy the Gambas website as well?




--
Protect Your Site and Customers from Malware Attacks
Learn about various malware tactics and how to avoid them. Understand 
malware threats, the impact they can have on your business, and how you 
can protect your company and customers by using code signing.
http://p.sf.net/sfu/oracle-sfdevnl
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Balloon no more displayed

2011-01-20 Thread Emanuele Sottocorno
You are right,
what i missed is:

GTK+
GNOME
UBUNTU 10.10 64 AND UBUNTU 10.04 64 (HAPPENS ON FEDORA 13 ALSO)

I tried with any of possible value for stacking property with the same
result. If the first Form you open is .Modal() the balloon is hidden by
the form. And yes if you disable Compiz all works fine, but in fact it
is very rare today find a user not have compiz enabled (apart from you).
Anyway i can workaround the problem, it is not so urgent to investigate.
Regards,
Emanuele

Il giorno gio, 20/01/2011 alle 02.42 +0100, Benoît Minisini ha scritto:
  Hi Benoît,
  return to this after a while because it seems not a compiz related
  problem, or at least, not only.
  If your first opened Form isn't the FMAIN and is Modal then the balloon
  is hidden by the form. If you open the FMAIN and then open a Modal Form
  the balloon is corretly displayed.
  The attached sample demonstrate the problem. Run it and you can see the
  balloon moving the Form1 apart; then set the FMain as start up class and
  now the balloon is visible.
  Regards,
  Emanuele
  
 
 What I see is normal (with KDE4  KWin). Note that your modal form is stacked 
 below, so you can't see it anyway, unless every other window is minimized.
 
 Regards,
 



--
Protect Your Site and Customers from Malware Attacks
Learn about various malware tactics and how to avoid them. Understand 
malware threats, the impact they can have on your business, and how you 
can protect your company and customers by using code signing.
http://p.sf.net/sfu/oracle-sfdevnl
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Building 3.0

2011-01-20 Thread John Spikowski
Gambas Developer Team,

I used svn and downloaded the trunk and ran ./reconf-all. I have
installed 3.0 Gambas as a sub-directory in my /home/jrs/gambas-dev/trunk
and ready to build Gambas 3.0. Before I get started I have a few
questions and maybe the answers will help other newbies like me to
Gambas help test the 3.0 release.

1. Do I still need to run ./configure after running ./reconf-all ?

2. I would like to continue to keep the 2.22 release I built as the
default and run 3.0 out of my home directory for testing. Should I use
the prefix option with configure to have the install create the binaries
in /home/jrs/???

3. If I want to refresh the truck and test recent fixes, is there a svn
command to only download the files that have changed since my last truck
request?

4. Is there a way to only recompile a component and install it rather
than doing a complete build from scratch?

5. Is there a better way to report suspected bugs other than the list?

6. What area(s) of Gambas development are most important at this time to
get the 3.0 release out?

Thanks for your help to bring a Gambas newbie developer up to speed.

John



--
Protect Your Site and Customers from Malware Attacks
Learn about various malware tactics and how to avoid them. Understand 
malware threats, the impact they can have on your business, and how you 
can protect your company and customers by using code signing.
http://p.sf.net/sfu/oracle-sfdevnl
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Building 3.0

2011-01-20 Thread Ron
On Jan 20, 2011 8:59 PM, John Spikowski supp...@scriptbasic.org wrote:

 Gambas Developer Team,

 I used svn and downloaded the trunk and ran ./reconf-all. I have
 installed 3.0 Gambas as a sub-directory in my /home/jrs/gambas-dev/trunk
 and ready to build Gambas 3.0. Before I get started I have a few
 questions and maybe the answers will help other newbies like me to
 Gambas help test the 3.0 release.

 1. Do I still need to run ./configure after running ./reconf-all ?

Yes

 2. I would like to continue to keep the 2.22 release I built as the
 default and run 3.0 out of my home directory for testing. Should I use
 the prefix option with configure to have the install create the binaries
 in /home/jrs/???

You can install and run gb2 and gb3 in same dir without problems.

 3. If I want to refresh the truck and test recent fixes, is there a svn
 command to only download the files that have changed since my last truck
 request?

svn up

 4. Is there a way to only recompile a component and install it rather
 than doing a complete build from scratch?

Run make install in its dir or one just above it.

 5. Is there a better way to report suspected bugs other than the list?

Google code bug tracker if it is propably a bug.

 6. What area(s) of Gambas development are most important at this time to
 get the 3.0 release out?

Get it in a usable state.


 Thanks for your help to bring a Gambas newbie developer up to speed.

 John


Ron_2nd.



--
 Protect Your Site and Customers from Malware Attacks
 Learn about various malware tactics and how to avoid them. Understand
 malware threats, the impact they can have on your business, and how you
 can protect your company and customers by using code signing.
 http://p.sf.net/sfu/oracle-sfdevnl
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user
--
Protect Your Site and Customers from Malware Attacks
Learn about various malware tactics and how to avoid them. Understand 
malware threats, the impact they can have on your business, and how you 
can protect your company and customers by using code signing.
http://p.sf.net/sfu/oracle-sfdevnl
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Building 3.0

2011-01-20 Thread John Spikowski
On Thu, 2011-01-20 at 21:07 +0100, Ron wrote:
 On Jan 20, 2011 8:59 PM, John Spikowski supp...@scriptbasic.org wrote:
 
  Thanks for your help to bring a Gambas newbie developer up to speed.
 

 Ron_2nd.
 

Thanks Ron!

Does the command 'build-dist' work and will it creates a .deb package on
my Ubuntu 32 box?





--
Protect Your Site and Customers from Malware Attacks
Learn about various malware tactics and how to avoid them. Understand 
malware threats, the impact they can have on your business, and how you 
can protect your company and customers by using code signing.
http://p.sf.net/sfu/oracle-sfdevnl
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] To the translator's wish list

2011-01-20 Thread Matti
In earlier versions (than gb3 rev.3457) you could select and copy the string of
the source laguage into the translation field.

This was useful with special chars (like \n, br...) and with long strings, to
calculate if the translation fits into the control.

Would be fine to give back this option.

Regards
Matti

--
Protect Your Site and Customers from Malware Attacks
Learn about various malware tactics and how to avoid them. Understand 
malware threats, the impact they can have on your business, and how you 
can protect your company and customers by using code signing.
http://p.sf.net/sfu/oracle-sfdevnl
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] To the translator's wish list

2011-01-20 Thread Benoît Minisini
 In earlier versions (than gb3 rev.3457) you could select and copy the
 string of the source laguage into the translation field.
 
 This was useful with special chars (like \n, br...) and with long
 strings, to calculate if the translation fits into the control.
 
 Would be fine to give back this option.
 
 Regards
 Matti
 

The fourth button from the left (with the copy icon) does that normally...

-- 
Benoît Minisini

--
Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
Finally, a world-class log management solution at an even better price-free!
Download using promo code Free_Logger_4_Dev2Dev. Offer expires 
February 28th, so secure your free ArcSight Logger TODAY! 
http://p.sf.net/sfu/arcsight-sfd2d
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Building 3.0

2011-01-20 Thread Benoît Minisini
 Gambas Developer Team,
 
 I used svn and downloaded the trunk and ran ./reconf-all. I have
 installed 3.0 Gambas as a sub-directory in my /home/jrs/gambas-dev/trunk
 and ready to build Gambas 3.0. Before I get started I have a few
 questions and maybe the answers will help other newbies like me to
 Gambas help test the 3.0 release.
 
 1. Do I still need to run ./configure after running ./reconf-all ?
 

Yes. Better run ./configure -C, it will be faster.

 2. I would like to continue to keep the 2.22 release I built as the
 default and run 3.0 out of my home directory for testing. Should I use
 the prefix option with configure to have the install create the binaries
 in /home/jrs/???

Gambas 2 and Gambas 3 should not interfere in any way.
 
 3. If I want to refresh the truck and test recent fixes, is there a svn
 command to only download the files that have changed since my last truck
 request?

svn update or svn up. There is a quick  dirty svn howto on the wiki.

 
 4. Is there a way to only recompile a component and install it rather
 than doing a complete build from scratch?

Only what has been changed will be recompiled. And Gambas and its components 
are like Linux kernel and its drivers. If you just recompile and install a 
component, it may not work, if that component needs something outside of its 
source directory that has changed too.

 
 5. Is there a better way to report suspected bugs other than the list?
 

The place where you report a bug is not really important at the moment (the 
mailing-list or the bug tracker). The important thing is how you report it. 
I.e. by providing all the details and a project that reproduces the bug!

 6. What area(s) of Gambas development are most important at this time to
 get the 3.0 release out?
 

I'd like the gb.report component to be usable - Be bold Fabien! :-) - and I'd 
like to replace the current IconView control by an IconView entirely made in 
Gambas. Maybe a few little things besides that, and a release candidate will 
be possible.

Regards,

-- 
Benoît Minisini

--
Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
Finally, a world-class log management solution at an even better price-free!
Download using promo code Free_Logger_4_Dev2Dev. Offer expires 
February 28th, so secure your free ArcSight Logger TODAY! 
http://p.sf.net/sfu/arcsight-sfd2d
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Feature request

2011-01-20 Thread vikram
Hi,

I am not sure if its a little late for this but having shrink/expand buttons 
for code in the IDE would be nice. You know the little + - signs that let you 
shrink or expand loops and functions.

P.S.: I've not used Gambas3 yet, so please ignore this mail if it's already got 
this feature.

Regards,
Vikram




  
--
Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
Finally, a world-class log management solution at an even better price-free!
Download using promo code Free_Logger_4_Dev2Dev. Offer expires 
February 28th, so secure your free ArcSight Logger TODAY! 
http://p.sf.net/sfu/arcsight-sfd2d
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] To the translator's wish list

2011-01-20 Thread Matti
Yes, of course. Didn't see it...

Am 20.01.2011 23:31, schrieb Benoît Minisini:
 In earlier versions (than gb3 rev.3457) you could select and copy the
 string of the source laguage into the translation field.

 This was useful with special chars (like \n, br...) and with long
 strings, to calculate if the translation fits into the control.

 Would be fine to give back this option.

 Regards
 Matti

 
 The fourth button from the left (with the copy icon) does that normally...
 

--
Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
Finally, a world-class log management solution at an even better price-free!
Download using promo code Free_Logger_4_Dev2Dev. Offer expires 
February 28th, so secure your free ArcSight Logger TODAY! 
http://p.sf.net/sfu/arcsight-sfd2d
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user