Re: [Gambas-user] Gambas-user Digest, Vol 35, Issue 48

2009-04-21 Thread Andreas Müller
Hello JB Skaggs, thank you for the help, but I think it is more pragmatic to uncomment the sound effects and remove the gb.sdl.sound component from the distribution files. Anybody interested in sound effects can uncomment a few lines in the display module and activate the component within his

Re: [Gambas-user] Error on Jaunty

2009-04-21 Thread Jesus Guardon
I agree with CelticBoy I've installed a working deb of my own application on Jaunty, that is running fine on Ubuntu 8.10 Gnome (and 8.04 with some tweaking), and also on latest version of openSuse KDE. Now, it crashes with signal 11. Initially it was developed on Gambas 2.9 compiled manually on

Re: [Gambas-user] a problem installing gambas...

2009-04-21 Thread arbelmichal
I'm there... On Tue, 2009-04-21 at 13:15 -0500, M0E Lnx wrote: > Try #gambas in irc.freenode.org > > On Apr 21, 2009 1:10 PM, "arbelmichal" wrote: > > ok Thats a lot... > Here gose... > > Do you have an IRC chanel so we can talk without the mail? > > arbelmic...@arbelmichal-desktop:~$ ls -al >

Re: [Gambas-user] a problem installing gambas...

2009-04-21 Thread M0E Lnx
Try #gambas in irc.freenode.org On Apr 21, 2009 1:10 PM, "arbelmichal" wrote: ok Thats a lot... Here gose... Do you have an IRC chanel so we can talk without the mail? arbelmic...@arbelmichal-desktop:~$ ls -al total 8884 drwxr-xr-x 165 arbelmichal arbelmichal 12288 2009-04-21 19:11 . drwxr-x

Re: [Gambas-user] a problem installing gambas...

2009-04-21 Thread arbelmichal
ok Thats a lot... Here gose... Do you have an IRC chanel so we can talk without the mail? arbelmic...@arbelmichal-desktop:~$ ls -al total 8884 drwxr-xr-x 165 arbelmichal arbelmichal 12288 2009-04-21 19:11 . drwxr-xr-x 3 rootroot 4096 2007-12-13 06:25 .. -rw-r- 1 arbelm

Re: [Gambas-user] a problem installing gambas...

2009-04-21 Thread M0E Lnx
Post your output of ls -al / On Apr 21, 2009 12:30 PM, "arbelmichal" wrote: can you please explain a bit more? What do I have to do? Arbel On Tue, 2009-04-21 at 12:17 -0500, M0E Lnx wrote: > I have seen this before. My problem was solved b...

Re: [Gambas-user] a problem installing gambas...

2009-04-21 Thread arbelmichal
can you please explain a bit more? What do I have to do? Arbel On Tue, 2009-04-21 at 12:17 -0500, M0E Lnx wrote: > I have seen this before. My problem was solved by restoring the sane > permissions to my /tmp dir > > On Apr 21, 2009 11:55 AM, "arbelmichal" wrote: > > Hi > Please read this thread

Re: [Gambas-user] a problem installing gambas...

2009-04-21 Thread M0E Lnx
I have seen this before. My problem was solved by restoring the sane permissions to my /tmp dir On Apr 21, 2009 11:55 AM, "arbelmichal" wrote: Hi Please read this thread and see if you can help me... I got project that I am working on and I hed to stop beacuase my Gambas died... Thanks Arbel ht

[Gambas-user] a problem installing gambas...

2009-04-21 Thread arbelmichal
Hi Please read this thread and see if you can help me... I got project that I am working on and I hed to stop beacuase my Gambas died... Thanks Arbel http://www.linuxbasic.net/index.php?topic=466.0 -- Stay on top of ever

Re: [Gambas-user] Error on Jaunty

2009-04-21 Thread CelticBhoy
CelticBhoy wrote: > > I am currently using 2.8 from the Ubuntu repo's, the project files are all > uploaded above. > I tried to install a .deb of 2.12 but got a dependancy error for a lib > file - sorry cant remember the name. > > Just checked again, and this is the error :- Error: Depend

Re: [Gambas-user] Error on Jaunty

2009-04-21 Thread CelticBhoy
I am currently using 2.8 from the Ubuntu repo's, the project files are all uploaded above. I tried to install a .deb of 2.12 but got a dependancy error for a lib file - sorry cant remember the name. -- View this message in context: http://www.nabble.com/Error-on-Jaunty-tp23132993p23160072.html

[Gambas-user] Cannot scroll gridview by mouse wheel with hidden row (gb.gtk)

2009-04-21 Thread HARADA Kazutaka
With gb.gtk, I cannot scroll gridview by mouse wheel if some hidden row (gridview.rows[].height = 0) exist. I attached small project to check it. When you click Button1, then even rows are set as hidden. Scroll bar works, but cannot scroll with mouse wheel even though mouse pointer is in the grid

Re: [Gambas-user] Catch NULL character

2009-04-21 Thread Benoît Minisini
> What is wrong with this line :- > > IF sElement[iLoop] = NULL THEN sElement[iLoop] = "0" > > I want to catch a null character and change it to "0". Just as a summary: NULL is NULL, a special constant (like TRUE or FALSE), that is the default value of Variant, String, Date and Object datatypes.

Re: [Gambas-user] Error on Jaunty

2009-04-21 Thread Benoît Minisini
> OK the menu is the problem. Is there a way around this or will I have to > design my projects without menu's Can you send me your project and tell the version of Gambas you use? -- Benoît -- Stay on top of everyt

Re: [Gambas-user] dynamic classes?

2009-04-21 Thread Benoît Minisini
> Hello, > > how can i creat a class having a dynamic name? > > for example. > > I have some classnames in my database and want now do this > > DIM cclass as class > Dim var = "myclassname" > Class = new var > > But that dosent run:( He takes the var as the class "var" > > How can I use the cont

Re: [Gambas-user] Error on Jaunty

2009-04-21 Thread CelticBhoy
OK the menu is the problem. Is there a way around this or will I have to design my projects without menu's -- View this message in context: http://www.nabble.com/Error-on-Jaunty-tp23132993p23157818.html Sent from the gambas-user mailing list archive at Nabble.com. --

Re: [Gambas-user] dynamic classes?

2009-04-21 Thread Jussi Lahtinen
If I understand correctly, you want to declare class type dynamically, not name... ( http://gambasdoc.org/help/lang/new?v3 ) I'm not sure you can do it that way... but maybe you should use integer variable that denotes what type is needed to declare. Then; Dim SomeObject as New Object Select cas

Re: [Gambas-user] dynamic classes?

2009-04-21 Thread Jeff
Try: var = Class.Load("myclassname") On Tue, 2009-04-21 at 15:51 +0200, Stefan Miefert wrote: > Hello, > > how can i creat a class having a dynamic name? > > for example. > > I have some classnames in my database and want now do this > > DIM cclass as class > Dim var = "myclassname" > Class

[Gambas-user] dynamic classes?

2009-04-21 Thread Stefan Miefert
Hello, how can i creat a class having a dynamic name? for example. I have some classnames in my database and want now do this DIM cclass as class Dim var = "myclassname" Class = new var But that dosent run:( He takes the var as the class "var" How can I use the content of the var? --

Re: [Gambas-user] Dependency is not satisfiable: gambas2-gb.sdl.sound

2009-04-21 Thread jbskaggs
It is a mistake in the ubuntu / debian package I had the same problem and manually installed and configured Gambas2 thru the ./configure etc method. Look up on the main Gambas2 website how to compile and install Gambas and it will list the dependencies and steps needed to do so. One of the main