Re: [Gambas-user] Smooth Scrolling (not happening)

2009-05-26 Thread M0E Lnx
I guess he meant sort of embedded. A quick and dirty way around this issue. An embedder on the host form that runs a separate gambas binary which is designed to scroll and scroll only. This is what I've done here for my application, but it's not exactly the way I'd rather do it.

Re: [Gambas-user] TextArea scrolling

2009-05-26 Thread Jussi Lahtinen
Thanks! This solution works in my case: TextArea1.Text = Something gb.NewLine TextArea1.Pos = TextArea1.Length TextArea1.EnsureVisible() Jussi 2009/5/25 Benoît Minisini gam...@users.sourceforge.net: When adding line to textarea: TextArea1.Text = Something gb.NewLine Cursor jumps to

Re: [Gambas-user] TextArea scrolling

2009-05-26 Thread Benoît Minisini
Thanks! This solution works in my case: TextArea1.Text = Something gb.NewLine TextArea1.Pos = TextArea1.Length TextArea1.EnsureVisible() Jussi Using TextArea1.Insert() is better and faster. Regards, -- Benoît

[Gambas-user] WAIT ... is it an (un) necessary evil for my app?

2009-05-26 Thread M0E Lnx
So, the next version of my vinstall-ng app is really shaping up nicely, but I'm running into a weird dilemma here. This is a linux installer, so there is a lot of decompression going on in the background as packages are being installed using via the gambas EXEC method. Here is the problem I'm

Re: [Gambas-user] WAIT ... is it an (un) necessary evil for my app?

2009-05-26 Thread Daniel Campos
Don't wait, remove this part of the code: IF $hproc.value 0 then RETURN $hproc.Value ELSE RETURN 0 END IF Then create an event handler for the kill event which is raised once the program is finished 2009/5/26 M0E Lnx m0e@gmail.com So, the next version of my vinstall-ng app is