[Gambas-user] R: Access global variable from other .class

2012-06-14 Thread Ru Vuott
I do not know if I understand correctly. However, if you want to access the value of a variable from the parent class, or from another class, you must set this variable as global and Public. In addition, you must set as public also controls the form and symbols of the modules in the options of

[Gambas-user] Sorting data with .Sort in a Gridview

2012-06-14 Thread Ru Vuott
Hello, ...I'm really not able to figure out how to use .Sort to sort the data in a column in a gridview. :-( I made a few attempts and some evidence, but nothing. Can you give me a simple little example of explanation? Thanksss Vuott

[Gambas-user] Gridview.row ?tag possible

2012-06-14 Thread Richard Terry
Hi Benoit. rightly or wrongly, and there may be a better solution (if so advice please), I'm using a gridview like a column view to display the drugs in my prescription writer, using Richtext, as by using a columnview, the text couldn't contain enough info, and I like to be able to bold a

Re: [Gambas-user] Gridview.row ?tag possible

2012-06-14 Thread Ricardo Díaz Martín
It would be great this feature. I explain the way I do. I fill gridview first column with the record key and set the width to 0. So after you got a easy way to get this key. I know there are other ways to do it but this is quite simple. Regards, Ricardo Díaz 2012/6/14 Richard Terry

Re: [Gambas-user] Application Error on latest svn

2012-06-14 Thread Sebi
I have the same error, I sent an email to the list yesterday reporting it. Only fix now is to revert to an older commit. -Original Message- From: Demosthenes Koptsis demosthen...@gmail.com Date: Thu, 14 Jun 2012 18:16:24 To: mailing list for gambas usersgambas-user@lists.sourceforge.net

[Gambas-user] Debian install

2012-06-14 Thread Demosthenes Koptsis
is the page http://gambasdoc.org/help/install/debian?v3view http://gambasdoc.org/help/install/debian?v3view up to date? i use linux mint which is a debian distro and in past i had some difficulties to install all needed packages to compile gambas3 i used the following apt-get sudo apt-get

Re: [Gambas-user] R: Access global variable from other .class

2012-06-14 Thread Jesus
Resent message. Don't know why the list didn't get it... Mensaje original Asunto: Re: [Gambas-user] R: Access global variable from other .class Fecha: Thu, 14 Jun 2012 16:11:26 +0200 De: Jesus ea7...@ea7dfh.com Para: gambas-user@lists.sourceforge.net El 14/06/12 10:58, Ru

[Gambas-user] fail to start the IDE rev 4828 and 4829

2012-06-14 Thread Karl Reinl
Salut, after update (svn) from rev 4818 to rev 4828 , I can'T start the IDE anymore. This is the shell output : ~/src/gambas/3 $ gambas3 QInotifyFileSystemWatcherEngine::addPaths: inotify_add_watch failed: Datei oder Verzeichnis nicht gefunden QFileSystemWatcher: failed to add paths:

Re: [Gambas-user] Server Socket Example

2012-06-14 Thread Benoît Minisini
Le 10/06/2012 22:00, Demosthenes Koptsis a écrit : Hi list, i work on a server project similar to ServerSocket example and i have some questions 1) in example i see that there is the use of Tag property for the socket as Public Sub MyServerSocket_Connection(sHost As String) Obj.Tag

Re: [Gambas-user] R: Array with multiple types of vars

2012-06-14 Thread Demosthenes Koptsis
Στις 12/6/2012 13:18, ο/η Ru Vuott έγραψε: i want to create an array like [Integer, Integer, String, Boolean, String] How can i do that? - You could use a Structure type array variable: Public Struct miaStruttura

Re: [Gambas-user] Array with multiple types of vars

2012-06-14 Thread Demosthenes Koptsis
yes that i wanted, a public array with different types of elements. so it can MyArray[0] = 1 MyArray[1] = 1.2 MyArray[2] = string MyArray[3] = TRUE thanks. Στις 12/6/2012 12:28, ο/η Emil Lenngren έγραψε: You can create a Variant[] that can contain arbitrary data types. You can store a

Re: [Gambas-user] update rev. 4818 to 4828 IDE failer

2012-06-14 Thread RICHARD WALKER
1. your log files have zero length. Try uploading them again. 2. just guessing, I had a problem with this before, are your gambas3 libraries all installed in the usual place for 64-bit libraries? Richard On 13/06/2012, Karl Reinl karl.re...@fen-net.de wrote: Salut, can't start the IDE any

[Gambas-user] Crash on rev 4829

2012-06-14 Thread Sebastian Kulesz
Hi! Since the commit of the new toolbar code (rev 4828) i can't start the IDE. This is what it prints out: FToolBar.LoadConfig.1368: #29: Invalid object 1: FWelcome.Run.33 2: Project.Main.287 Any ideas? Thanks! -- Live

Re: [Gambas-user] Access global variable from other .class

2012-06-14 Thread Bruce
On Thu, 2012-06-14 at 04:28 +, sundar j wrote: I am trying to write a code for accepting user password in a input box/textbox when user click on button from main form. For user input i have created new form named sudo.form and codes are in sudo.class file. This sudo.class accepts user

Re: [Gambas-user] Access global variable from other .class

2012-06-14 Thread sundar j
I have already tried and tested those option. Thoug it works i kept it as stand by option.nbsp; But i want my application to be universal and look native. In addition i want to know more on accessing variables from different class file. From: Bruce lt;bbr...@paddys-hill.netgt; Sent: Thu, 14

Re: [Gambas-user] update rev. 4818 to 4828 IDE failer

2012-06-14 Thread Sebi
This bug has already been reported 4 times on the mailing list!! The only fix available now is to revert to a previous commit, and wait. -Original Message- From: RICHARD WALKER richard.j.wal...@ntlworld.com Date: Thu, 14 Jun 2012 00:51:09 To: karl.re...@fen-net.de; mailing list for

[Gambas-user] R: Sorting data with .Sort in a Gridview

2012-06-14 Thread Ru Vuott
Ok: Columns.Sort doesn't... sort ! :-) --- Gio 14/6/12, Ru Vuott vu...@yahoo.it ha scritto: Da: Ru Vuott vu...@yahoo.it Oggetto: [Gambas-user] Sorting data with .Sort in a Gridview A: mailing list for gambas users gambas-user@lists.sourceforge.net Data: Giovedì 14 giugno 2012, 11:34

Re: [Gambas-user] R: Access global variable from other .class

2012-06-14 Thread Jesus
El 14/06/12 10:58, Ru Vuott escribió: I do not know if I understand correctly. However, if you want to access the value of a variable from the parent class, or from another class, you must set this variable as global and Public. In addition, you must set as public also controls the form and

[Gambas-user] Fwd: Debian install

2012-06-14 Thread Demosthenes Koptsis
i did not incude the libs for jit gstreamer if anyone can ... Original Message Subject:Debian install Date: Thu, 14 Jun 2012 19:04:28 +0300 From: Demosthenes Koptsis demosthen...@gmail.com To: Gambas User List gambas-user@lists.sourceforge.net is the page

Re: [Gambas-user] Application Error on latest svn

2012-06-14 Thread Jussi Lahtinen
Weird, that same revision works correctly on Xubuntu 12.04 64bit. Jussi On 14 June 2012 18:16, Demosthenes Koptsis demosthen...@gmail.com wrote: Hi list i checkout latest svn 4829 and i get an application error when i start gambas3 see screenshot please help.

Re: [Gambas-user] update rev. 4818 to 4828 IDE failer

2012-06-14 Thread Jussi Lahtinen
All attached logs are zero size... Jussi On 14 June 2012 01:37, Karl Reinl karl.re...@fen-net.de wrote: Salut, can't start the IDE any more!!! [System] OperatingSystem=Linux Kernel=3.0.0-16-generic Architecture=x86_64 Memory=1019076 kB DistributionVendor=LinuxMint

Re: [Gambas-user] R: Sorting data with .Sort in a Gridview

2012-06-14 Thread Benoît Minisini
Le 14/06/2012 13:40, Ru Vuott a écrit : Ok: Columns.Sort doesn't... sort ! :-) No. It just displays the sort symbol in the header (with the Ascending property). You have to sort the data yourself. -- Benoît Minisini

Re: [Gambas-user] R: Sorting data with .Sort in a Gridview

2012-06-14 Thread Ru Vuott
Yes, ok, Benoit, only after sent my message, I studied .Columns.Sort in Documentation. Excuse me. :-) Bye Vuott P.S.: no news, Benoît, about my previous message: Error with XmlWriter tag in gb.xml ? --- Ven 15/6/12, Benoît Minisini gam...@users.sourceforge.net ha scritto: Da: Benoît

Re: [Gambas-user] Error with XmlWriter tag in gb.xml

2012-06-14 Thread Adrien Prokopowicz
Seems like my message wasn't sent. :-) This should be solved in the revision #4826. 2012/6/14 Ru Vuott vu...@yahoo.it Hello Benoit, an user of Gambas-it.org Community ask me to write to you about a possible error with XmlWriter tag in gb.xml. He says that he found a problem, linked to the

Re: [Gambas-user] Error with XmlWriter tag in gb.xml

2012-06-14 Thread Ru Vuott
This should be solved in the revision #4826. Oh, Adrien, thanks, I'll communicate it to that italian Gambas-forum user. -- Live Security Virtual Conference Exclusive live event will cover all the ways today's

Re: [Gambas-user] Error with XmlWriter tag in gb.xml

2012-06-14 Thread Adrien Prokopowicz
Oops, this is the #4829, not the #4826, of course... 2012/6/15 Ru Vuott vu...@yahoo.it This should be solved in the revision #4826. Oh, Adrien, thanks, I'll communicate it to that italian Gambas-forum user.

[Gambas-user] IDE should work again now!

2012-06-14 Thread Benoît Minisini
The bug in toolbar management that made the IDE crashing at startup with the Invalid object error should have been fixed. In revision #4830. Please confirm! -- Benoît Minisini -- Live Security Virtual Conference

Re: [Gambas-user] IDE should work again now!

2012-06-14 Thread Sebastian Kulesz
Fixed for me! Thanks a lot! On Thu, Jun 14, 2012 at 9:35 PM, Benoît Minisini gam...@users.sourceforge.net wrote: The bug in toolbar management that made the IDE crashing at startup with the Invalid object error should have been fixed. In revision #4830. Please confirm! -- Benoît

Re: [Gambas-user] GB.JIT Crashes

2012-06-14 Thread Sebastian Kulesz
The last commit fixed the previous bug, but now i'm getting a weird error. I have a parent class with ~100 childs. When I add Fast on the parent the only message I get is: Stack became corrupted in a JIT function. Please make a bug report. Full output with GB_JIT: http://pastebin.com/gyW56S2H

Re: [Gambas-user] Server Socket Example

2012-06-14 Thread Demosthenes Koptsis
Στις 12/6/2012 21:53, ο/η Benoît Minisini έγραψε: Le 10/06/2012 22:00, Demosthenes Koptsis a écrit : Hi list, i work on a server project similar to ServerSocket example and i have some questions 1) in example i see that there is the use of Tag property for the socket as Public Sub