Re: [Gambas-user] Strange Keyboard Behavior

2012-03-12 Thread Bill-Lancaster
Dear Benoît Have installed Kubuntu desktop and after a short trial, everything seems to be working fine. Thanks for your help Bill -- View this message in context: http://old.nabble.com/Strange-Keyboard-Behavior-tp33477237p33484512.html Sent from the gambas-user mailing list archive at

Re: [Gambas-user] Strange Keyboard Behavior

2012-03-12 Thread Bill-Lancaster
Dear Benoît, I've not used Kubuntu before - I like it so I'll stay with it however it would be selfish to just walk away from this problem! Under Ubuntu the screen resolution is shown as 96X96 dpi. I logged onto Ubuntu as guest, attempted to edit on of the example projects - same problem. Is

Re: [Gambas-user] Strange Keyboard Behavior

2012-03-12 Thread Benoît Minisini
Le 12/03/2012 09:36, Bill-Lancaster a écrit : Dear Benoît, I've not used Kubuntu before - I like it so I'll stay with it however it would be selfish to just walk away from this problem! Under Ubuntu the screen resolution is shown as 96X96 dpi. I logged onto Ubuntu as guest, attempted to

Re: [Gambas-user] Strange Keyboard Behavior

2012-03-12 Thread Bill-Lancaster
Sorry - I meant KDE not Kubuntu! So KDE doesn't give me any problems so far. Bill -- View this message in context: http://old.nabble.com/Strange-Keyboard-Behavior-tp33477237p33485307.html Sent from the gambas-user mailing list archive at Nabble.com.

Re: [Gambas-user] Feature in Gambas3

2012-03-12 Thread Olivier Cruilles
HI Benoit, I try the proxy configuration today and you limit the port of the proxy from 0 to 100 and it's not a good idea because it must be a range from 0 to 65535 (2^16) The standard port for a proxy is 3138 or 8080. Olivier Cruilles Mail: linu...@club-internet.fr Le 12 mars 2012 à

[Gambas-user] Read and arrays

2012-03-12 Thread Jussi Lahtinen
I was thinking quicker way to read large binary files to memory. And I noticed this; The returned datatype can be one of the following: NULL, Boolean, Byte, Short, Integer, Long, Pointer, Single, Float, Date, String, Variant, any Array, Collection or structure.

Re: [Gambas-user] Read and arrays

2012-03-12 Thread tobi
On Mon, 12 Mar 2012, Jussi Lahtinen wrote: I was thinking quicker way to read large binary files to memory. And I noticed this; The returned datatype can be one of the following: NULL, Boolean, Byte, Short, Integer, Long, Pointer, Single, Float, Date, String, Variant, any Array, Collection or

Re: [Gambas-user] Transformable GUI

2012-03-12 Thread M. Cs.
Thank you Tobias, but I would like this as a drag and drop thing. Let say I have a VBox with two frames in it: Fr_Top and Fr_Bottom. How could I just grab the Fr_Top, drag below Fr_Bottom and drop so they changed their places? Is there any limitations to take one of them out of container VBox and

Re: [Gambas-user] Transformable GUI

2012-03-12 Thread M. Cs.
To be more accurate, I would like to implement something like you have in Guayadeque music player for instance. You have different containers and you can move them inside the IDE. 2012/3/12, M. Cs. mohar...@gmail.com: Thank you Tobias, but I would like this as a drag and drop thing. Let say I

Re: [Gambas-user] Feature in Gambas3

2012-03-12 Thread Benoît Minisini
Le 12/03/2012 13:28, Olivier Cruilles a écrit : HI Benoit, I try the proxy configuration today and you limit the port of the proxy from 0 to 100 and it's not a good idea because it must be a range from 0 to 65535 (2^16) The standard port for a proxy is 3138 or 8080. Oops, I just forgot

Re: [Gambas-user] Read and arrays

2012-03-12 Thread Benoît Minisini
Le 12/03/2012 17:21, tobi a écrit : On Mon, 12 Mar 2012, Jussi Lahtinen wrote: I was thinking quicker way to read large binary files to memory. And I noticed this; The returned datatype can be one of the following: NULL, Boolean, Byte, Short, Integer, Long, Pointer, Single, Float, Date,

[Gambas-user] Prog.gambas only one process

2012-03-12 Thread abbat
How to allow to run only one copy of prog.gambas? I tried to: Shell [killall, prog.gambas] on form open... But there is no such a process when prog.gambas is running/ -- View this message in context: http://old.nabble.com/Prog.gambas-only-one-process-tp33491262p33491262.html Sent from the

[Gambas-user] Issue 224 in gambas: Input leaks memory

2012-03-12 Thread gambas
Status: New Owner: Labels: Version Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 224 by emil.len...@gmail.com: Input leaks memory http://code.google.com/p/gambas/issues/detail?id=224 1) Describe the problem. The reference counting is wrong when using

[Gambas-user] R: Prog.gambas only one process

2012-03-12 Thread Ru Vuott
My suggestion: Public Sub Form_Open() Dim index As String Dim plura As String[] Dim a, b, c As Integer Shell ps -aux | grep To index plura = Split(index, ) c = plura.Count For a = 0 To c - 1 If Right(plura[a], 20) Like *.gambas* Then For b = a

[Gambas-user] R: Prog.gambas only one process - RECTIUS !!!

2012-03-12 Thread Ru Vuott
Excuse me, a little problem at name of program (before it was strange aaa): I re-send the code: Public Sub Form_Open() Dim index As String Dim plura As String[] Dim a, b, c As Integer Shell ps -aux | grep my_gambas__program To index plura = Split(index, ) c =

Re: [Gambas-user] Issue 224 in gambas: Input leaks memory

2012-03-12 Thread gambas
Updates: Status: Fixed Labels: -Version Version-TRUNK Comment #1 on issue 224 by benoit.m...@gmail.com: Input leaks memory http://code.google.com/p/gambas/issues/detail?id=224 Fixed in revision #4545.