Re: [Gambas-user] How do I use the MouseMove event in an IconView Control

2010-01-20 Thread Benoît Minisini
> From the docs, I thought it was implying that the "Tracking" property > was activated on IconView controls. And are you saying this only works > on Gambas 3? The docs at > file:///usr/share/gambas2/help/help/comp/gb+qt/control/_mousemove.html > are supposed to be for Gambas 2.x, aren't they?

Re: [Gambas-user] How do I use the MouseMove event in an IconView Control

2010-01-20 Thread Bill Richman
From the docs, I thought it was implying that the "Tracking" property was activated on IconView controls. And are you saying this only works on Gambas 3? The docs at file:///usr/share/gambas2/help/help/comp/gb+qt/control/_mousemove.html are supposed to be for Gambas 2.x, aren't they? I'm co

Re: [Gambas-user] Unknow symbol 'txtLogs' in class 'Flogfiles'

2010-01-20 Thread Fabien Bodard
FLogfiles.TxtLogs.text = "Blablablabla ..." in good way : you add in FLogFile : Public SetTextLog (sText as String) TxtLog.Text = sText End in Main : FlogFile.SetTextLog("blablabla") for example the gambas ide is written in gambas ... and not use public control option ... 2010/1/20 C

Re: [Gambas-user] Unknow symbol 'txtLogs' in class 'Flogfiles'

2010-01-20 Thread Charlie Reinl
Am Mittwoch, den 20.01.2010, 21:58 +0100 schrieb Jean-marc Gueranger: > Hello gambas-user, > > I'm new in gambas, and need any help. > > In my project, have a form named 'Flogfiles' and have a textarea > 'TxtLogs' inside. > When I want modify the text in this textarea,since Main module, I have >

Re: [Gambas-user] drove me crazy

2010-01-20 Thread Charlie Reinl
Am Mittwoch, den 20.01.2010, 13:01 -0700 schrieb Dimitris Anogiatis: > Charlie, Benoit, > > Wouldn't something like that usually work? > > PUBLIC SUB Main() > DIM col1 AS NEW Collection > DIM col2 AS NEW Collection > DIM sKey AS String > Dim Counter as Integer > col1.Add("1", "one") > col1.Add(

[Gambas-user] Unknow symbol 'txtLogs' in class 'Flogfiles'

2010-01-20 Thread Jean-marc Gueranger
Hello gambas-user, I'm new in gambas, and need any help. In my project, have a form named 'Flogfiles' and have a textarea 'TxtLogs' inside. When I want modify the text in this textarea,since Main module, I have the following message 'Unknown symbol 'TxtLogs' in 'Flogfiles'. Code is : FLogfiles.T

Re: [Gambas-user] Gambas3 svn installs now, but won't run

2010-01-20 Thread Matti
There's a 404 error when I try to click those two links. Matti Benoît Minisini schrieb: > >> btw: I think I could spend some time now helping to improve the German >> translations. There seems to be a lot do do on that. But I don't know who's >> already working on what. If you can need me, just

Re: [Gambas-user] Gambas3 svn: requrements

2010-01-20 Thread Matti
ok, was just an idea. I don't know anything about those low-level things. Benoît Minisini schrieb: >> >> Wouldn't it be a good idea to make a script that checks the current >> requirements, to run *before* all these installation commands, saying "hey, >> you shouldn't start the installation, bec

Re: [Gambas-user] Gambas3 svn installs now, but won't run

2010-01-20 Thread Benoît Minisini
> Hi Benoit, > > I did delete everything, checkout from scratch and start everything again > about ten times now. Really boring... I agree. But it seems you have something really weird in your system installation. I never encountered a bug in automake. > > There is another small progress: I n

Re: [Gambas-user] Gambas3 svn installs now, but won't run

2010-01-20 Thread Matti
Hi Benoit, I did delete everything, checkout from scratch and start everything again about ten times now. Really boring... There is another small progress: I noticed that the requirements for gb3 have changed. Went through the docs and checked every library that is needed. Which is an even more a

Re: [Gambas-user] drove me crazy

2010-01-20 Thread Dimitris Anogiatis
Charlie, Benoit, Wouldn't something like that usually work? PUBLIC SUB Main() DIM col1 AS NEW Collection DIM col2 AS NEW Collection DIM sKey AS String Dim Counter as Integer col1.Add("1", "one") col1.Add("2", "two") col1.Add("3", "three") col1.Add("4", "four") PRINT "Returns the key of the l

Re: [Gambas-user] How do I use the MouseMove event in an IconView Control

2010-01-20 Thread Fabien Bodard
it is possible but on gambas3 only by activate the traking property 2010/1/20 Bill Richman : > I'm trying to figure out why the MouseMove event isn't firing when I'm > moving around inside an IconView control.  I want to be able to read the > key of the current item the cursor is hovering over, a

[Gambas-user] Compiling trunk

2010-01-20 Thread Peter Landgren
Hi, checked out a fresh Gambas 3 and tried to compile, but got into trouble. Console output: [prog...@hpd1 trunk]$ ./reconf-all libtoolize: putting auxiliary files in `.'. libtoolize: copying file `./ltmain.sh' libtoolize: You should add the contents of the following files to `aclocal.m4': libtool

Re: [Gambas-user] GTK - Form Events - Strange behaviours

2010-01-20 Thread Matteo Pasotti
Benoît Minisini ha scritto: Can you send your project? Sure, here it is. To reproduce my problem use gtk. Try first without buttons on the two forms; then add a button to Fmain and, at last, add a button to Ftest. Otherwise, you can try with QT components and all works fine. May

Re: [Gambas-user] GTK - Form Events - Strange behaviours

2010-01-20 Thread Benoît Minisini
> Hi everybody, > I can't understand some behaviours, as reported in the subject. > > I'm using Gambas 2.13 from Ubuntu 9.10 64bit. > The project uses only gtk. > > I've created a Form, FTest, that contains five components: three labels, > one picture and a timer. > > This is my (trivial) code:

[Gambas-user] GTK - Form Events - Strange behaviours

2010-01-20 Thread Matteo Pasotti
Hi everybody, I can't understand some behaviours, as reported in the subject. I'm using Gambas 2.13 from Ubuntu 9.10 64bit. The project uses only gtk. I've created a Form, FTest, that contains five components: three labels, one picture and a timer. This is my (trivial) code: '''

Re: [Gambas-user] drove me crazy

2010-01-20 Thread Charlie Reinl
Am Mittwoch, den 20.01.2010, 17:27 +0100 schrieb Benoît Minisini: > > Am Dienstag, den 19.01.2010, 17:30 -0700 schrieb Dimitris Anogiatis: > > > Hey Charlie, > > > > > > Try changing this line > > > > > > sKey = col1.Key > > > > > > to > > > > > > sKey = sElem.Key > > > > > > > > > Hope t

Re: [Gambas-user] output to open office files

2010-01-20 Thread Charlie Reinl
Am Mittwoch, den 20.01.2010, 15:18 +0100 schrieb Benoît Minisini: > > Hello, > > > > Thanks for both of you for the answers! > > The solution you described Benoît is very sympa for me. Could you give me > > your 'dirty' code in a module in order to add to my project and use your > > function to w

Re: [Gambas-user] How to change a component

2010-01-20 Thread Rolf-Werner Eilert
> PS: Try this: http://gambasdoc.org/help/dev/gambas > Thanks for the link, but the text doesn't exactly answer my question. Regards Rolf -- Throughout its 18-year history, RSA Conference consistently attracts the wor

Re: [Gambas-user] How to change a component

2010-01-20 Thread Rolf-Werner Eilert
Am 20.01.2010 13:32, schrieb Benoît Minisini: >> How can I fiddle around in a component? What must I do? >> >> For instance, if I want to change anything in the Balloon thing, I found >> the sources in the original directory where make ran, but where do I go >> to change something for the installed

Re: [Gambas-user] drove me crazy

2010-01-20 Thread Benoît Minisini
> Am Dienstag, den 19.01.2010, 17:30 -0700 schrieb Dimitris Anogiatis: > > Hey Charlie, > > > > Try changing this line > > > > sKey = col1.Key > > > > to > > > > sKey = sElem.Key > > > > > > Hope this helps > > > > Regards, > > Dimitris > > > > On Tue, Jan 19, 2010 at 4:09 PM, Charlie Rei

Re: [Gambas-user] drove me crazy

2010-01-20 Thread Charlie Reinl
Am Dienstag, den 19.01.2010, 17:30 -0700 schrieb Dimitris Anogiatis: > Hey Charlie, > > Try changing this line > > sKey = col1.Key > > to > > sKey = sElem.Key > > > Hope this helps > > Regards, > Dimitris > > On Tue, Jan 19, 2010 at 4:09 PM, Charlie Reinl wrote: > > > Salut Benoi

Re: [Gambas-user] output to open office files

2010-01-20 Thread Doriano Blengino
Benoît Minisini ha scritto: >> Hello, >> >> Thanks for both of you for the answers! >> The solution you described Benoît is very sympa for me. Could you give me >> your 'dirty' code in a module in order to add to my project and use your >> function to write cells? >> > > I think that there

Re: [Gambas-user] output to open office files

2010-01-20 Thread Benoît Minisini
> Hello, > > Thanks for both of you for the answers! > The solution you described Benoît is very sympa for me. Could you give me > your 'dirty' code in a module in order to add to my project and use your > function to write cells? That code is not free, I done it for my boss. But I plan to create

Re: [Gambas-user] output to open office files

2010-01-20 Thread Robert JUHASZ
Hello, Thanks for both of you for the answers! The solution you described Benoît is very sympa for me. Could you give me your 'dirty' code in a module in order to add to my project and use your function to write cells? I may also learn from your code. (My standard way for the output is to use tem

Re: [Gambas-user] Modules cant raise events :-(

2010-01-20 Thread Benoît Minisini
> Hi Benoit, > > Benoît Minisini wrote: > > If CurrentUser, CurrentProject and CurrentSystem are the objects that > > change, > > then they should raise the events, not the module where they are > > declared. Shouldn't they? An event is the way an object tells the world > > it has changed. > > > >

Re: [Gambas-user] output to open office files

2010-01-20 Thread Benoît Minisini
> 2010/1/20 yuhej : > > Hello Benoît, > > > > As far as I know we have no easy option to write data to open office calc > > files like VB can do to excel. > > Once I read in a comment of you - if my memory is correct - that you plan > > to do a function for that but only in the far future. Is it pr

Re: [Gambas-user] update to report-ng

2010-01-20 Thread Benoît Minisini
> Hi list, > > I have updated the report-ng script so that it should work with any > distro that is supplying an /etc/lsb-release file. Before it only > expected Ubuntu to provide this file. > > Regards, > > >>-- > I have integrated your script inside the Gambas 3 IDE in revision #2620

Re: [Gambas-user] How to change a component

2010-01-20 Thread Kadaitcha Man
2010/1/20 Rolf-Werner Eilert : > How can I fiddle around in a component? What must I do? > > For instance, if I want to change anything in the Balloon thing, I found > the sources in the original directory where make ran, but where do I go > to change something for the installed version? Or do I ha

Re: [Gambas-user] Gambas3 svn installs now, but won't run

2010-01-20 Thread Benoît Minisini
> You're right, there is a little progress. > > Got version 2611 now ("from scratch", as you say), and in usr/local/bin now > I at least have the files gambas3, gambas3.gambas, > gambas-database-manager.gambas, gba3, gbc3, gbi3, gbr3, gbs3, gbs3.gambas > and gbx3. > > But it won't run. > > Th

Re: [Gambas-user] LOCK only within OPEN/CLOSE?

2010-01-20 Thread Benoît Minisini
> > Thanks for your answer. Is it correct that when I close this stream by > UNLOCK, it isn't deleted and has to be KILLed programmatically? What > will happen to another user if his app looks it up after it has been > UNLOCKed but not deleted? > > Regards > > Rolf > All locks are automaticall

Re: [Gambas-user] output to open office files

2010-01-20 Thread Kadaitcha Man
2010/1/20 yuhej : > > Hello Benoît, > > As far as I know we have no easy option to write data to open office calc > files like VB can do to excel. > Once I read in a comment of you - if my memory is correct - that you plan to > do a function for that but only in the far future. Is it previewed in >

Re: [Gambas-user] How to change a component

2010-01-20 Thread Benoît Minisini
> How can I fiddle around in a component? What must I do? > > For instance, if I want to change anything in the Balloon thing, I found > the sources in the original directory where make ran, but where do I go > to change something for the installed version? Or do I have to change > there and re-in

Re: [Gambas-user] LOCK only within OPEN/CLOSE?

2010-01-20 Thread Sprachschule Eilert
Am 19.01.2010 20:06, schrieb Benoît Minisini: >> Am 19.01.2010 10:57, schrieb Rolf-Werner Eilert: >>> Just tried to rewrite a function I used for locking files in my Gambas1 >>> apps. It was based on making a directory for locking, and it delivered a >>> Boolean about if locking was successful or n

[Gambas-user] How to change a component

2010-01-20 Thread Rolf-Werner Eilert
How can I fiddle around in a component? What must I do? For instance, if I want to change anything in the Balloon thing, I found the sources in the original directory where make ran, but where do I go to change something for the installed version? Or do I have to change there and re-install? T

[Gambas-user] output to open office files

2010-01-20 Thread yuhej
Hello Benoît, As far as I know we have no easy option to write data to open office calc files like VB can do to excel. Once I read in a comment of you - if my memory is correct - that you plan to do a function for that but only in the far future. Is it previewed in Gambas2 or do you have any sche