Re: [Gambas-user] painting graph to image continuously

2010-12-16 Thread wally
On Thursday 16 December 2010 22:42:14 Benoît Minisini wrote: > > On Thursday 16 December 2010 20:15:21 Fabien Bodard wrote: > > > I hope this can help you. > > > > > > This is in few lines how to make a real time graph in gambas > > > > Fabian, > > > > thank you very much, i'll study this code t

Re: [Gambas-user] About help and arrays and variables

2010-12-16 Thread Benoît Minisini
> On 12/16/2010 11:55 AM, Benoît Minisini wrote: > >> I am converting some older code over and came across this > >> > >> idiosyncrasy with static arrays in subs, I can work around it easily > >> enough but my curiosity is peaked... why are static arrays not allowed > >> at the procedure leve

Re: [Gambas-user] painting graph to image continuously

2010-12-16 Thread Benoît Minisini
> On Thursday 16 December 2010 20:15:21 Fabien Bodard wrote: > > I hope this can help you. > > > > This is in few lines how to make a real time graph in gambas > > Fabian, > > thank you very much, i'll study this code tomorrow. > > Would be nice if you may confirm the different behavior of > Dr

[Gambas-user] Bug with IsInteger?

2010-12-16 Thread Jussi Lahtinen
? IsInteger("12 + 5.4") True Gambas 3 rev 3371 @ Ubuntu 10.04 64bit Jussi -- Lotusphere 2011 Register now for Lotusphere 2011 and learn how to connect the dots, take your collaborative environment to the next level, and e

Re: [Gambas-user] About help and arrays and variables

2010-12-16 Thread Stephen Bungay
On 12/16/2010 11:55 AM, Benoît Minisini wrote: >> I am converting some older code over and came across this >> idiosyncrasy with static arrays in subs, I can work around it easily >> enough but my curiosity is peaked... why are static arrays not allowed >> at the procedure level? >> > Because

Re: [Gambas-user] painting graph to image continuously

2010-12-16 Thread wally
On Thursday 16 December 2010 20:15:21 Fabien Bodard wrote: > I hope this can help you. > > This is in few lines how to make a real time graph in gambas > > -- > Fabien Bodard > Fabian, thank you very much, i'll study this code tomorrow. Would be nice if you may confirm the different behavior

Re: [Gambas-user] painting graph to image continuously

2010-12-16 Thread Fabien Bodard
I hope this can help you. This is in few lines how to make a real time graph in gambas -- Fabien Bodard DemoGraph-0.0.1.tar.gz Description: GNU Zip compressed data -- Lotusphere 2011 Register now for Lotusphere 2011 an

Re: [Gambas-user] painting graph to image continuously

2010-12-16 Thread wally
On Thursday 16 December 2010 18:46:46 wally wrote: > > On Thursday 16 December 2010 18:03:21 Fabien Bodard wrote: > > if you want us to help you ... please be more explicit on what you want to > do ! > > > > first why do you want to resize the drawing area (for scrolling ?) > > > > are you

Re: [Gambas-user] painting graph to image continuously

2010-12-16 Thread wally
On Thursday 16 December 2010 18:03:21 Fabien Bodard wrote: > if you want us to help you ... please be more explicit on what you want to do ! > > first why do you want to resize the drawing area (for scrolling ?) > > are you sure you have understand all the capabilities of a drawing > area

Re: [Gambas-user] Gambas 3 Printing

2010-12-16 Thread Fabien Bodard
gnome is the desktop envirronment like kde is ... (panel + a summary of apps) but based on gtk that is a toolkit(draw the menu/buttons, and so on) like qt 2010/12/16 Michael : > This exploits my newness to Linux. How do I find out this version. I did > a file search and found a lot of gtk-2.0 fold

Re: [Gambas-user] painting graph to image continuously

2010-12-16 Thread Fabien Bodard
if you want us to help you ... please be more explicit on what you want to do ! first why do you want to resize the drawing area (for scrolling ?) are you sure you have understand all the capabilities of a drawing area ? do you know the _draw event ? waht i've understand is : you want lik

Re: [Gambas-user] About help and arrays and variables

2010-12-16 Thread Benoît Minisini
> > I am converting some older code over and came across this > idiosyncrasy with static arrays in subs, I can work around it easily > enough but my curiosity is peaked... why are static arrays not allowed > at the procedure level? > Because the stack can't receive them. -- Benoît Minisini

Re: [Gambas-user] About help and arrays and variables

2010-12-16 Thread Stephen Bungay
On 11/19/2010 08:58 AM, Fabien Bodard wrote: > 2010/11/19 Demosthenes Koptsis: >> ok! >> >> i was cofused from two things >> >> 1) >> in previous message about static arrays Fabien said that: >> >>> yes a static array is not an object ... that's why it's a little bit >>> deprecated :) >>> >>> >>> a

Re: [Gambas-user] painting graph to image continuously

2010-12-16 Thread wally
On Thursday 16 December 2010 10:21:16 wally wrote: > On Wednesday 15 December 2010 18:57:16 Fabien Bodard wrote: > > Le 15 décembre 2010 16:56, Benoît Minisini > > a écrit : > > >> > > >> thanks :) but ...Image , "Not a drawable Object" > > >> > > >> If t > myImage1.W Then > > >> myImage1.Re

Re: [Gambas-user] painting graph to image continuously

2010-12-16 Thread wally
On Wednesday 15 December 2010 18:57:16 Fabien Bodard wrote: > Le 15 décembre 2010 16:56, Benoît Minisini > a écrit : > >> > >> thanks :) but ...Image , "Not a drawable Object" > >> > >> If t > myImage1.W Then > >> myImage1.Resize(myImage1.w + 1, myImage1.H) > >> > >> Draw.Begin(myImage1)