Re: [Gambas-user] Help for Image and Picture Colors

2012-02-10 Thread tobi
>>> class... so I tried adding&Hff00&to whatever color is assigned to > >>>> any pixel in the 8*8px Image or not to do it and some other experiments > >>>> but nothing worked on the entire project. there's always something > >>&

Re: [Gambas-user] How to organize dependent lists

2012-02-28 Thread tobi
--- CNode.class: Public Children As CNode[] --- or, which may be more intuitive in later usage: --- CNode.class: Inherits Array Public Children As CNode[] Public Function _get(iInd As Integer) As CNode Return Me.Children[iInd] End --- in fact, i haven't programmed in Gambas for about a month

Re: [Gambas-user] R: Process in TableVew and to Kill a Process - RECTIUS

2012-03-01 Thread tobi
_ > > Gambas-user mailing list > > Gambas-user@lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > -- > Virtualization & Cloud

Re: [Gambas-user] Gambas runtime

2012-03-01 Thread tobi
ldn't it be accessible from within, like from a constant in the interpreter? regards, tobi -- Virtualization & Cloud Management Using Capacity Planning Cloud computing makes use of virtualization - but cloud comput

Re: [Gambas-user] Strange Keyboard Behavior

2012-03-10 Thread tobi
ize) when similar problems occured (not sure whether i didn't just dream it) but this was completely outside gambas so the problem may be elsewhere. to follow this assumption we must know anyway if your sources match the above characteristics (long lines/huge source files). regards

Re: [Gambas-user] Read and arrays

2012-03-12 Thread tobi
eason for which the standard libc streams are buffered by default). reading raw memory arrays of fixed size may be done using memory streams...? do they persist in gambas3? i can't check anything now. regards, tobi --

Re: [Gambas-user] wlan ready?

2012-03-17 Thread tobi
hi, On Sat, 17 Mar 2012, Randall Morgan wrote: > You could call ping on a know external server and then examine the > results... > > Or simply loop trying to use curl to connect to an external server. > > > > > > On Sat, Mar 17, 2012 at 5:05 AM, Bill-Lancaster > wrote: > > > > > Gambas 3,

Re: [Gambas-user] WebPage support in Gambas (2)

2012-03-24 Thread tobi
often a good service!) in that application to evaluate parameters. i haven't used any WebPage so far, i just read about it here, so i may have a wrong understanding of how it works and where it would be used. sorry if that's the case.

[Gambas-user] ncurses component

2012-03-25 Thread tobi
or a valuable addition? (hope, the accent works, i searched about an hour for that - and can't even see the result) regards, tobi -- This SF email is sponsosred by: Try Windows Azure free for 90 days Click Here

Re: [Gambas-user] ncurses component

2012-03-26 Thread tobi
On Mon, 26 Mar 2012, Rolf-Werner Eilert wrote: > > Am 25.03.2012 14:42, schrieb tobi: > > Benoît, > > > > do you think an ncurses component would be useful? i abandoned the X server > > with the beginning of > > the year and when i noticed that i would need a

Re: [Gambas-user] Delete sentance between words in a file.

2012-03-27 Thread tobi
sEndDelim, iStart) + Len(sEndDelim) sRest = Mid$(sWholeText, 0, iStart - 1) & Mid$(sWholeText, iEnd) which then is the parts before and after the found strings. there may be off-by-one errors, i couldn't try it, but you get the idea. regards, tobi --

Re: [Gambas-user] ncurses component

2012-03-28 Thread tobi
hi, On Mon, 26 Mar 2012, tobi wrote: > On Mon, 26 Mar 2012, Rolf-Werner Eilert wrote: > > > > Am 25.03.2012 14:42, schrieb tobi: > > > Benoît, > > > > > > do you think an ncurses component would be useful? i abandoned the X > > > server with

Re: [Gambas-user] ncurses component

2012-03-28 Thread tobi
On Wed, 28 Mar 2012, Benoît Minisini wrote: > Le 28/03/2012 21:29, tobi a écrit : > > hi, > > > > On Mon, 26 Mar 2012, tobi wrote: > >> On Mon, 26 Mar 2012, Rolf-Werner Eilert wrote: > >>> > >>> Am 25.03.2012 14:42, schrieb tobi: > >>&

Re: [Gambas-user] Load hidden file to variable?

2012-03-31 Thread tobi
it works for me. maybe you messed around with the variable? try Print File.Load("~/.applica...") to see the content, it really should work. regards, tobi -- This SF email is spon

Re: [Gambas-user] Load hidden file to variable?

2012-04-02 Thread tobi
.", gb.Read) and Print File.Load("~/") insistently fails? regards, tobi -- This SF email is sponsosred by: Try Windows Azure free for 90 days Click Here http://p.sf.net/sfu/sfd2d-msazure

[Gambas-user] Excluding components from build process

2012-04-07 Thread tobi
keys?) explaining me what goes on but a yes/no/look at the stuff answer. Regards, Tobi -- For Developers, A Lot Can Happen In A Second. Boundary is the first to Know...and Tell You. Monitor Your Applications in Ultra-Fin

Re: [Gambas-user] Excluding components from build process

2012-04-07 Thread tobi
On Sat, 07 Apr 2012, Charlie Reinl wrote: > Am Samstag, den 07.04.2012, 20:06 +0200 schrieb tobi: > > Hi, > > > > I know a pretty bunch of components that I don't intend to compile on my > > system (because I don't > > want my box to satisfy

Re: [Gambas-user] Setting at zero more byte in a file by "Byte[]"

2012-04-08 Thread tobi
ambas-user mailing list > Gambas-user@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user If you Write #File, aArr As Array then Gambas has to be able to aArr = Read #File As Array the data back. To do so, the type of a

Re: [Gambas-user] Function/code for close icon?

2012-04-15 Thread tobi
_ > Gambas-user mailing list > Gambas-user@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user For this purpose, you have the Window_Close() event. Regards, Tobi -- For Deve

Re: [Gambas-user] Grab command

2012-04-20 Thread tobi
e talking about GB2, you can do: DrawingArea.Grab().Save(Path, [Quality]) However, in GB3, the Grab method is entirely different. Refer to http://www.gambasdoc.org/help/comp/gb.qt4/control/grab?v3 Regards, Tobi -- For

Re: [Gambas-user] How to "Me.Close" with "Shell" or "Exec"?

2012-04-20 Thread tobi
On Fri, 20 Apr 2012, abbat wrote: > > Thank you very very very much )) > Now it works as i need. > > > > minthaka wrote: > > > > What about Quit instead Me.Close? > > > > 2012/4/20, abbat : > >> > >> It does not CLOSE. > >> Just try F5 > >> > >> If True then > >> Exec ["ls"] > >> Me

Re: [Gambas-user] Grab command

2012-04-20 Thread tobi
On Fri, 20 Apr 2012, trat50 wrote: > > Hi Tobi, I just tried that - but it still blacks out anything not visible on > the computer monitor. > > > tobi-15 wrote: > > > > If you are talking about GB2, you can do: > > > > DrawingArea.Grab().Save(Path

Re: [Gambas-user] Documentation

2012-04-20 Thread tobi
On Fri, 20 Apr 2012, Willy Raets wrote: > On do, 2012-04-19 at 22:06 +0100, Steve wrote: > > Are there any docs to help > > > > > > > > To try out gambasforge example > > > > How to setup a gambas cgi webserver > > > > > > > > Steve > > All I could find is this: > > http://gambasdoc.

Re: [Gambas-user] Documentation

2012-04-20 Thread tobi
reasonably - the mailinglist is tuned down to attachments of 512KiB. For I don't want to bother some moderator nor take up more space than required, you get another email. For those also seeking for the paper, I will push Hans to put it on http://www.gambas-buch.de/. Regards, Tobi --

Re: [Gambas-user] Grab command

2012-04-21 Thread tobi
On Fri, 20 Apr 2012, trat50 wrote: > > Thanks Tobi, Yes you are correct - this is on Gambas2. > I'll have to try that on a PictureBox. Initially I had everything for this > app on a PictureBox, but I didn't know how to draw on those. I'll see what > I can find

Re: [Gambas-user] rev. 4651 and new gb.xml

2012-04-21 Thread tobi
On Sat, 21 Apr 2012, Karl Reinl wrote: > Salut Benoît, > > the new gb.xml broke my project which used before gb.xml and > gb.xml.xslt. > As I can see, you wrote a gambas component also called gb.xml, which > replaced the old. > Now I struggle at xml.FromString() where xml is a XmlDocument, while y

Re: [Gambas-user] rev. 4651 and new gb.xml

2012-04-21 Thread tobi
On Sat, 21 Apr 2012, Charlie Reinl wrote: > Am Samstag, den 21.04.2012, 21:35 +0200 schrieb tobi: > > On Sat, 21 Apr 2012, Karl Reinl wrote: > > > Salut Benoît, > > > > > > the new gb.xml broke my project which used before gb.xml and > > > gb.xml

Re: [Gambas-user] Grab command

2012-04-22 Thread tobi
On Sat, 21 Apr 2012, trat50 wrote: > > But Tobi, I have been drawing just fine on a DrawingArea. > The DrawingArea named "Sky" is the picture posted above... > > I switched from a PictureBox to a DrawingArea because I couldn't draw on a > PictureBox. > N

[Gambas-user] Regexp based highlighting

2012-04-25 Thread tobi
rom Benoît perhaps? I saw that there exist several Highlight* classes that do the job for quite some languages, so I _suppose_ that there's no such automatism?) Regards, Tobi -- Live Security Virtual Conference Exclusive

[Gambas-user] Using qsort with Objects

2012-04-29 Thread tobi
ic routine to compare the two values. I tried to Private Sub MyCompare(V1 As Variant[], V2 As Variant[]) and got a Segfault after one line of wrong results when, in MyCompare, Print V1[0], V1[1] which are valid. Reg

[Gambas-user] Segfault when overriding Variant[]

2012-05-01 Thread tobi
le file Public Sub Main() Dim hV As New Variant[] End --8<- I hope that it's possible to override native classes? Regards, Tobi -- Live Security Virtual Conference Exclusive live event will cover all th

Re: [Gambas-user] Segfault when overriding Variant[]

2012-05-01 Thread tobi
On Tue, 01 May 2012, tobi wrote: > Hi, > > I promptly get a segfault when I try to create an instance of my extended > Variant[]: > > .src/Variant[].class > --8<- > ' Gambas class file > > Export > > Public Sub _compare(hV As Va

Re: [Gambas-user] Segfault when overriding Variant[]

2012-05-01 Thread tobi
On Tue, 01 May 2012, Benoît Minisini wrote: > Le 01/05/2012 10:47, tobi a écrit : > > On Tue, 01 May 2012, tobi wrote: > >> Hi, > >> > >> I promptly get a segfault when I try to create an instance of my extended > >> Variant[]: > >> > >&

Re: [Gambas-user] Segfault when overriding Variant[]

2012-05-04 Thread tobi
On Tue, 01 May 2012, tobi wrote: > > > > Hu hu. It should be possible to override any class, but please provide a > > project so that I can debug! > > > > -- > > Benoît Minisini > > > >

Re: [Gambas-user] About library and component packaging in Gambas 3

2012-05-04 Thread tobi
On Sat, 05 May 2012, Benoît Minisini wrote: > Le 05/05/2012 03:42, Bruce Bruen a écrit : > > On Sat, 2012-05-05 at 02:45 +0200, Benoît Minisini wrote: > >> Le 04/05/2012 23:34, Benoît Minisini a écrit : > >>> > >>> I don't like any of those solution at the moment. > >>> > >>> And if I define a comp

[Gambas-user] gb.xml.html: Cannot find -lgb.xml

2012-05-05 Thread tobi
nts do similar, so I have to rely on what I think to know about library names... (But I suppose, you and anyone else got this stuff installed...) Regards, Tobi -- Live Security Virtual Conference Exclusive live event w

Re: [Gambas-user] Segfault when overriding Variant[]

2012-05-05 Thread tobi
On Sat, 05 May 2012, Benoît Minisini wrote: > Le 04/05/2012 21:59, tobi a écrit : > > On Tue, 01 May 2012, tobi wrote: > >>> > >>> Hu hu. It should be possible to override any class, but please provide a > >>> project so that I ca

Re: [Gambas-user] About library and component packaging in Gambas 3

2012-05-05 Thread tobi
On Sat, 05 May 2012, Benoît Minisini wrote: > Le 05/05/2012 08:51, tobi a écrit : > > > > Concerning the preprocessor... What about utilising the cpp just as a > > command that runs over each > > class and module file before seen by the compiler code? It's already

[Gambas-user] Announcement: gambas-buch.de officially started

2012-05-05 Thread tobi
Hi gambas-users, at http://www.gambas-buch.de you will find a website on which a book on the Gambas programming language will be published. After over 3 years of intensive research, now the first chapters are published. We place value on good description of the classes and components of Gambas

Re: [Gambas-user] About library and component packaging in Gambas 3

2012-05-05 Thread tobi
On Sat, 05 May 2012, tobi wrote: > On Sat, 05 May 2012, Benoît Minisini wrote: > > Le 05/05/2012 08:51, tobi a écrit : > > > > > > Concerning the preprocessor... What about utilising the cpp just as a > > > command that runs over each > > > class and

Re: [Gambas-user] Announcement: gambas-buch.de officially started

2012-05-05 Thread tobi
On Sat, 05 May 2012, Benoît Minisini wrote: > Le 05/05/2012 17:15, tobi a écrit : > > Hi gambas-users, > > > > at http://www.gambas-buch.de you will find a website on which a book on the > > Gambas programming > > language will be published. After over 3 years of

Re: [Gambas-user] About library and component packaging in Gambas 3

2012-05-05 Thread tobi
On Sat, 05 May 2012, Benoît Minisini wrote: > Le 05/05/2012 15:30, tobi a écrit : > >> > >> OK. > >> But just for interest, what do you mean by "impossible to analyze"? Excuse > >> me, but I haven't read > >> anything from the compi

Re: [Gambas-user] gb.xml.html: Cannot find -lgb.xml

2012-05-06 Thread tobi
output... > >> I don't know if it is even possible to link against the gambas components. > >> I was taught that a > >> shared library _has_ to follow the "lib"& name& ".so" name pattern in > >> order to be recognised > >>

Re: [Gambas-user] gb.xml.html: Cannot find -lgb.xml

2012-05-06 Thread tobi
On Sun, 06 May 2012, Fabien Bodard wrote: > 2012/5/6 tobi > > > On Sat, 05 May 2012, Benoît Minisini wrote: > > > Le 05/05/2012 14:01, Emanuele Sottocorno a écrit : > > > > > > > >> *** Warning: Linking the shared library gb.xml.html.la against t

Re: [Gambas-user] gb.xml.html: Cannot find -lgb.xml

2012-05-06 Thread tobi
On Sun, 06 May 2012, Fabien Bodard wrote: > do it ! > -- > Live Security Virtual Conference > Exclusive live event will cover all the ways today's security and > threat landscape has changed and how IT managers can respond

Re: [Gambas-user] Bug trying to use gb.ncurses component

2012-05-11 Thread tobi
a terminal to run in - AFAIK - and I really can't say if the IDE console is a PTY or something that ncurses accepts. However, if you have enabled GUI components, try to disable them. Regards, Tobi -- Live Security Vi

Re: [Gambas-user] Bug trying to use gb.ncurses component

2012-05-11 Thread tobi
On Fri, 11 May 2012, Benoît Minisini wrote: > Le 11/05/2012 20:29, tobi a écrit : > > > > Hi, > > > > if I could read it correctly (you know why I began developing gb.ncurses? I > > have no X running, I had > > to use my framebuffer web browser to view the

Re: [Gambas-user] Is gambasdoc.org down?

2012-05-12 Thread tobi
On Sat, 12 May 2012, Christer Johansson wrote: > > Anyone else having problem reaching http://gambasdoc.org? Been down whole > day > for me... > > /CJ > > > -- > Live Security Virtual Conference > Exclusive live event w

Re: [Gambas-user] Two bugs/issues noted

2012-05-14 Thread tobi
On Mon, 14 May 2012, Christer Johansson wrote: > > Noted some issues last night... > > First one is with Date(now). If assigned to a variable (or printed) it > adds placeholders for time as zeroes like... > > 05/14/2012 00:00:00 > > Second is regarding the Shell command. If I execute the foll

Re: [Gambas-user] Error in Left$ and Mid$ functions to the gb.ncurses component

2012-05-20 Thread tobi
; Path=/usr/local/bin/gbx3 > > > > [Libraries] > > Qt4=libQtCore.so.4.8.1 > > GTK+=libgtk-x11-2.0.so.0.2400.10 > > > > P.D. Sorry for my english, this is not my native language > > > > -- > > William Cabrera > > http://willicab.gnu.org.ve >

Re: [Gambas-user] Bug on Gambas official website

2012-05-20 Thread tobi
ion promptly and IMHO it looks nice - strange though for the first moment when you realise that half of a line is cut away and you cannot scroll. Alright, it's not good for a UI but this box is just a preview of things that are anyway only presented and as that, it's purpose is to loo

[Gambas-user] Strange file modes

2012-05-20 Thread tobi
s used by the build system by their names or something if this is really considered a security issue - I don't think so but I'm, too, not very familiar with what could be done. I just want things clean) Regards, Tobi ---

Re: [Gambas-user] Shell with wait does not wait till work complettion

2012-05-21 Thread tobi
t see anything until the command completes and a new event loop is entered? I think one could help better with more information. Regards, Tobi -- Live Security Virtual Conference Exclusive live event will cover all

Re: [Gambas-user] Fw: Shell with wait does not wait till work complettion

2012-05-21 Thread tobi
he interpreter re-enters its event loop. Only in this loop, changes to the GUI are made effective. So just call Wait without any parameter so that the interpreter spends only as long there as it needs to process all the pending events and refresh the GUI. You can read that on: http://www.gambasdo

Re: [Gambas-user] Data Structures like C++

2012-05-21 Thread tobi
sts.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user When you mean "data structure like [in] C++" you mean those things we can do with gambas Objects? I could make a bunch of the ones listed above from scratch using classes - I tend to detest C++ but I think, th

Re: [Gambas-user] Data Structures like C++

2012-05-21 Thread tobi
On Mon, 21 May 2012, Demosthenes Koptsis wrote: > Στις 21/5/2012 22:56, ο/η tobi έγραψε: > > On Mon, 21 May 2012, Demosthenes Koptsis wrote: > >> Basic languages have simple data structures like vars and arrays but > >> other languages > >> like c++ with the hel

Re: [Gambas-user] Data Structures like C++

2012-05-21 Thread tobi
On Mon, 21 May 2012, Benoît Minisini wrote: > Le 21/05/2012 21:51, Demosthenes Koptsis a écrit : > > Basic languages have simple data structures like vars and arrays but > > other languages > > like c++ with the help of pointers can have advanced data structures > > like containers etc... > > > > s

Re: [Gambas-user] Data Structures like C++

2012-05-23 Thread tobi
desire for an n-tree then? You presented a b-tree above, this appears generic to me... I certainly lack theory on those things. But shouldn't it be less annoying to get to level 3 than "Root.left.left.left" ? There are a lot of purposes and designs

Re: [Gambas-user] New JIT Compiler, but.....

2012-05-23 Thread tobi
63/ > ___ > Gambas-user mailing list > Gambas-user@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user On my system I used /etc/ld.so.conf to store a custom library search path. This file corresponds to ldconfig(8).

Re: [Gambas-user] Data Structures like C++

2012-05-24 Thread tobi
On Thu, 24 May 2012, Bruce wrote: > On Wed, 2012-05-23 at 17:19 +0200, tobi wrote: > > On Thu, 24 May 2012, Bruce wrote: > > > On Mon, 2012-05-21 at 22:25 +0200, Benoît Minisini wrote: > > > > > > > * Tree > > > > * Graph > > > &

Re: [Gambas-user] Data Structures like C++

2012-05-24 Thread tobi
On Thu, 24 May 2012, Bruce wrote: > On Thu, 2012-05-24 at 11:07 +0200, tobi wrote: > > > (Completely giving up anything I knew about binary trees now, because it > > wasn't much and it wasn't > > even from a book): > > You said that you can traverse from a

Re: [Gambas-user] Error in Left$ and Mid$ functions to the gb.ncurses component

2012-05-25 Thread tobi
On Sun, 20 May 2012, tobi wrote: > On Sun, 20 May 2012, Benoît Minisini wrote: > > Le 20/05/2012 16:26, William Cabrera a écrit : > > > Hi, I have been testing the component ncurses and so far everything well, > > > but the functions mentioned in the title sim

Re: [Gambas-user] My Raspberry Pi has arrived!

2012-05-30 Thread tobi
). Depending on what is possible with the current debugger, parameter(s) are required (pointers? names?) and a way to obtain them from the debugger over there (this could be the only addition to the debugger process interface). The socket over there writes back the data so that the IDE here can

Re: [Gambas-user] My Raspberry Pi has arrived!

2012-05-30 Thread tobi
On Wed, 30 May 2012, Benoît Minisini wrote: > Le 30/05/2012 15:04, tobi a écrit : > > > > Don't know how remote debugging programs like gdb or something work with > > this, but a naive and > > the more annoying-to-write approach could be a socket on the other s

Re: [Gambas-user] "mutex" applications

2012-06-06 Thread tobi
s to create a lockfile and check for that. If you are running, the lockfile exists, when program terminates, it removes the file. I suggest to deliver a script to remove that lockfile in case of application crash (I wrote such a thing for the firefox at our school because students seem to either

[Gambas-user] Configuration issue with gb.desktop

2012-06-06 Thread tobi
Yes! I never had any X on this machine (unlike on the old one where everything got compiled). Shouldn't the component be disabled by the configure script when required headers are not found? Regards, Tobi -- Li

Re: [Gambas-user] Configuration issue with gb.desktop

2012-06-09 Thread tobi
On Sat, 09 Jun 2012, Benoît Minisini wrote: > Le 06/06/2012 20:12, tobi a écrit : > > Hi, > > > > I just moved to a new machine and tried to compile gambas3 again. On make, > > I get with gb.desktop: > > > > make[5]: Entering directory `/home/woodap/sour

Re: [Gambas-user] C like #include for Gambas

2012-06-11 Thread tobi
mplemented in the Gambas Preprocessor and scolded me for my proposition to use the CPP instead. Nonetheless, if you really want to use the #include directive and other c-style things in your own dark chamber, nobody would care if you maintain your sources split, merge them via #include and then pus

Re: [Gambas-user] C like #include for Gambas

2012-06-12 Thread tobi
ostly unreadable, can create > > very difficult bugs, make the source code impossible to analyze (bye-bye > > automatic completion...), and so on. > > Yes, automatic completion would mean browsing all #included files each > time to search for keywords, but how do IDEs for C p

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

2012-06-15 Thread tobi
ons > will include endpoint security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > ___ > Gambas-user mailing list > Gambas-user@lists.sourceforge.net > https://lists.sourcef

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

2012-06-15 Thread tobi
as root, it's always the same problem to solve... I don't know about the scripts, I personally didn't need them so far but they are distributed in the gb.desktop/src/gb.desktop/xdg-utils/ directory in the source tree. If there is a bug, you might be able to spot it yourself - at l

Re: [Gambas-user] How do I override an Array class?

2012-06-17 Thread tobi
ceforge.net/lists/listinfo/gambas-user I have done overriding Variant[] successfully (extended it by a specific Sort() method) but it caused an interpreter complaint (I do not use the IDE) until (excluding) rev #4715 so it would be interesting what message you get and what revision you use... (

Re: [Gambas-user] How do I override an Array class?

2012-06-17 Thread tobi
as changed and how IT managers can respond. Discussions > will include endpoint security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > ___ > Gambas-user mailing list > Gambas-us

Re: [Gambas-user] How do I override an Array class?

2012-06-17 Thread tobi
On Sun, 17 Jun 2012, Benoît Minisini wrote: > Le 17/06/2012 15:40, tobi a écrit : > > On Sun, 17 Jun 2012, Benoît Minisini wrote: > >> Le 17/06/2012 08:22, Bruce a écrit : > >>> I would like to override the Variant[] class to extend it with a small > &g

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

2012-06-18 Thread tobi
ually well end the discussion of the preferred graphical frontend - only disadvantage I can see: in this draft, there is no configuration possible, except for the method of privilege elevation. Regards, Tobi -- Live Securi

[Gambas-user] Signal #11 when overriding Variant[] - Bug revived?

2012-06-20 Thread tobi
ing changed in that function but found nothing). Can you remember? - the subject of the mails was "Segfault when overriding Variant[]" (1st May 2012). Can you tell me something about the state of affairs? Regards, Tobi ---

Re: [Gambas-user] Signal #11 when overriding Variant[] - Bug revived?

2012-06-24 Thread tobi
On Fri, 22 Jun 2012, Benoît Minisini wrote: > Le 20/06/2012 21:38, tobi a écrit : > > Hi Benoît, > > > > this afternoon, we discovered that with a newer revision the program I > > wrote to demonstrate sorting > > of multi-dimensioned Variant[] broke. I again ge

Re: [Gambas-user] Signal #11 when overriding Variant[] - Bug revived?

2012-06-24 Thread tobi
On Sun, 24 Jun 2012, Benoît Minisini wrote: > Le 24/06/2012 12:40, tobi a écrit : > > > > The demonstration project for our website is attached. I removed the Form > > containing a GridView to > > sort and some stuff and replaced it by a simple module file to test it wi

Re: [Gambas-user] Gridview_ColumnClick(). How...

2012-06-25 Thread tobi
after the type of data in that column, e.g.) How you use it, depends on your application but generally speaking: Public Sub GridView1_ColumnClick(Column As Integer) Print "You clicked on column #";; Column End Regards, Tobi -

Re: [Gambas-user] gb3: using array of structures with dimensions unknown until runtime

2012-07-04 Thread tobi
On Wed, 04 Jul 2012, Kevin Fishburne wrote: > On 07/04/2012 05:42 AM, Emil Lenngren wrote: > > When you are declaring the array by writing > > A[3] As Single > > you declare an inline array, i.e. NOT a reference to an array. > > So you cannot write > > ThatStruct.A = AnArray. > > Instead you have t

Re: [Gambas-user] Compilation error when building Gambas 3.2.0

2012-07-07 Thread tobi
will include endpoint security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > ___ > Gambas-user mailing list > Gambas-user@lists.sourceforge.net > https://lists.sourceforge.net/list

Re: [Gambas-user] Compilation error when building Gambas 3.2.0

2012-07-07 Thread tobi
e file to avoid a new release? > > > On Sat, Jul 7, 2012 at 6:55 PM, tobi wrote: > > On Sat, 07 Jul 2012, Sebastian Kulesz wrote: > >> Hi! I'm getting a compilation error when building the official Gambas > >> 3.2.0 release. Happens both on a clean chroot or