[Gambas-user] .gitignore for a Gambas project

2014-04-23 Thread Patrik Karlsson
Hi, What should a .gitignore look like? The one I am using contains: .lock *~ *.gambas .settings /Patrik -- Start Your Social Network Today - Download eXo Platform Build your Enterprise Intranet with eXo Platform

[Gambas-user] Issue 522 in gambas: Panels do not capture keypress events

2014-04-23 Thread gambas
Status: New Owner: Labels: Version Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 522 by computer...@gmail.com: Panels do not capture keypress events http://code.google.com/p/gambas/issues/detail?id=522 1) Describe the problem. Panels do not capture

[Gambas-user] Music.Length part 2

2014-04-23 Thread Patrik Karlsson
Hi, it's almost 6 years since I wrote the first post [1] regarding Music.Length I recently picked up Gambas again and I am about to finish this little project now. :) As far as I can tell, there is still no easy Gambas way to get the length of an audio file, right? Would it be possible to

Re: [Gambas-user] Music.Length part 2

2014-04-23 Thread Benoît Minisini
Le 23/04/2014 17:38, Patrik Karlsson a écrit : Hi, it's almost 6 years since I wrote the first post [1] regarding Music.Length I recently picked up Gambas again and I am about to finish this little project now. :) As far as I can tell, there is still no easy Gambas way to get the length of

Re: [Gambas-user] .gitignore for a Gambas project

2014-04-23 Thread Tobias Boege
On Wed, 23 Apr 2014, Patrik Karlsson wrote: Hi, What should a .gitignore look like? The one I am using contains: .lock *~ *.gambas .settings You can also safely ignore .action .directory .icon.png .startup as they can (and will) be regenerated by the IDE. You should ignore .gambas

Re: [Gambas-user] .gitignore for a Gambas project

2014-04-23 Thread Tobias Boege
On Wed, 23 Apr 2014, Tobias Boege wrote: On Wed, 23 Apr 2014, Patrik Karlsson wrote: Hi, What should a .gitignore look like? The one I am using contains: .lock *~ *.gambas .settings You can also safely ignore .action .directory .icon.png .startup Hum, of course,

Re: [Gambas-user] .gitignore for a Gambas project

2014-04-23 Thread Benoît Minisini
Le 23/04/2014 16:17, Patrik Karlsson a écrit : Hi, What should a .gitignore look like? The one I am using contains: .lock *~ *.gambas .settings /Patrik Look at the Project.CleanUp() method in the IDE source code. That method removes all files that must not be controlled by subversion

[Gambas-user] Issue 523 in gambas: MediaPlayer example will not start on Elementary OS Luna GStreamer-CRITICAL

2014-04-23 Thread gambas
Status: New Owner: Labels: Version-3.5.3 Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 523 by pata.kar...@gmail.com: MediaPlayer example will not start on Elementary OS Luna GStreamer-CRITICAL http://code.google.com/p/gambas/issues/detail?id=523 1)

Re: [Gambas-user] Music.Length part 2

2014-04-23 Thread Ru Vuott
...he could get the audio file duration by using external resources of API SMPEG: Public Struct SMPEG_Info has_audio As Integer has_video As Integer width As Integer height As Integer current_frame As Integer current_fps As Float

[Gambas-user] TreeView: Change parent key

2014-04-23 Thread Jørn Erik Mørne
Hi! Is there a way with the TreeView component to change an item's parent key? Now, I have to clear out all elements, and reload them each time I want to move an item to another parent, and this also resets the current opened/closed status of each item, which clutters the users's experience a

Re: [Gambas-user] Issue 520 in gambas: System.DataTypes is writeable

2014-04-23 Thread gambas
Updates: Status: Accepted Labels: -Version Version-3.5.0 Comment #1 on issue 520 by benoit.m...@gmail.com: System.DataTypes is writeable http://code.google.com/p/gambas/issues/detail?id=520 The property is read-only, but not the returned array. Because it is created once, and

Re: [Gambas-user] Issue 522 in gambas: Panels do not capture keypress events

2014-04-23 Thread gambas
Updates: Status: NeedsInfo Labels: -Version Version-3.5.0 Comment #1 on issue 522 by benoit.m...@gmail.com: Panels do not capture keypress events http://code.google.com/p/gambas/issues/detail?id=522 1) Please provide the information displayed by the System information menu in

[Gambas-user] UCase$()

2014-04-23 Thread Pino Zollo
UCase$() does not work with ñ and accented vowels. Try this: Debug UCase$(ñ), UCase$(á), UCase$(à), UCase$(é), UCase$(è), UCase$(ó), UCase$(ò) Regards Pino -- Start Your Social Network Today - Download eXo Platform

Re: [Gambas-user] UCase$()

2014-04-23 Thread Randall Morgan
This is not a bug as the docs say that Ucase$ does not work with UTF-8 string encoding. Try String.Ucase(). On Wed, Apr 23, 2014 at 7:02 PM, Pino Zollo pinozo...@gmail.com wrote: UCase$() does not work with ñ and accented vowels. Try this: Debug UCase$(ñ), UCase$(á), UCase$(à),