Re: [Gambas-user] Multiline question

2011-06-10 Thread Sebi Kul
On 10/06/2011, at 09:21, tobias wrote: > hello, > i have a question about long lines. i know one can split long > IF-statements at logical operations like > IF TRUE = TRUE AND > FALSE = FALSE THEN > but is there a way to do that splitting in normal code? i think of > something like > i = \ > 2 >

Re: [Gambas-user] Facebook Component

2011-06-05 Thread Sebi Kul
On dom 05 jun 2011 06:22:03 ART, Fabien Bodard wrote: > it don't work for me :/ > > seem to have problem with the password > > Le 5 juin 2011 04:27, Sebi Kul a écrit : >> >> >> On sáb 04 jun 2011 19:22:56 ART, Benoît Minisini wrote: >>>> Hi al

Re: [Gambas-user] Facebook Component

2011-06-04 Thread Sebi Kul
On sáb 04 jun 2011 19:22:56 ART, Benoît Minisini wrote: >> Hi all! >> >> I have been working the last few days on a Facebook component to make >> GAMBAS more social and web friendly. It doesn't have many bugs, it >> misses some features, and it may crash at any time (no error managment >> impleme

[Gambas-user] Facebook Component

2011-06-04 Thread Sebi Kul
Hi all! I have been working the last few days on a Facebook component to make GAMBAS more social and web friendly. It doesn't have many bugs, it misses some features, and it may crash at any time (no error managment implemented). BUT, it works. The only things I have implemented so far are: A. *A

Re: [Gambas-user] gb.Desktop and Gnome Keyring

2011-05-25 Thread Sebi Kul
On mié 25 may 2011 21:21:24 ART, Benoît Minisini wrote: >> Hi! >> >> I wanted to know how is the keyring accessed using Gambas. I found on >> the gb.Desktop component a Gambas class (_DesktopPasswords) and a C >> component when the desktop enviroment is Gnome. but i couldn't find any >> info regard

[Gambas-user] gb.Desktop and Gnome Keyring

2011-05-25 Thread Sebi Kul
Hi! I wanted to know how is the keyring accessed using Gambas. I found on the gb.Desktop component a Gambas class (_DesktopPasswords) and a C component when the desktop enviroment is Gnome. but i couldn't find any info regarding it's usage. The _DesktopPasswords is exported as a static class, but

Re: [Gambas-user] Dynamically loading components

2011-05-10 Thread Sebi Kul
The reason for doing this is the following: I'm developing a project which would theoretically have 2 modules, the base one (the program itself) and the online module, (which adds synchronization capabilities). Because i would like to keep the classes inside the Online module hidden, to avoid an

[Gambas-user] Dynamically loading components

2011-05-10 Thread Sebi Kul
Hi! I am using Gambas 3 to develop a modular application. I would like to know if it's possible to load components dynamically (If the component file exist, load it, if not, skip the execution code where the component's functions are called) What I have so far is this: == Try Component.L

[Gambas-user] IconPanel doesn't follow Enabled propriety

2011-05-08 Thread Sebi Kul
Hi all! I was just testing my app and I realized that when I do: -- Me.Enabled=False -- or -- IconPanel1.Enabled=False -- Although the form is disabled, and the IconPanel container is disabled, the icon list isn't (meaning that the user can still change the list index and raise new

Re: [Gambas-user] Run-time bug

2011-05-05 Thread Sebi Kul
Hi! Try to use: test[0].Add("Logon") It should work then On 05/05/2011, at 00:30, nando wrote: > ' Gambas class file > > PRIVATE test AS String[30, 30] > > > PUBLIC SUB my_test() > > test = ["Voice", "Logon"] '<---If I REM this, there is no runtime error on > next line > test[0, 1] = "Logon"

Re: [Gambas-user] Can Gambas play mp3 Files?

2011-04-05 Thread Sebi Kul
On mar 05 abr 2011 18:41:16 ART, Tomek wrote: > I've tried to use SDL music component to play mp3 file, but I can't. In > Example Music player it loads and seems to start, but holds on 0:00:00 with > no action or error. I tried Gambas 2 and Gambas 3 on Ubuntu Studio 10.10, > Debian 6, Ubuntu St