Re: [Gambas-user] Gambas-user Digest, Vol 28, Issue 3

2008-09-18 Thread Rini Verawati
unsubscribe On Tue, Sep 2, 2008 at 2:55 AM, <[EMAIL PROTECTED]>wrote: > Send Gambas-user mailing list submissions to >gambas-user@lists.sourceforge.net > > To subscribe or unsubscribe via the World Wide Web, visit >https://lists.sourceforge.net/lists/listinfo/gambas-user > or, via

[Gambas-user] Build errors version ...67

2008-09-18 Thread richard terry
make[3]: *** [install-exec-local] Error 126 make[3]: Leaving directory `/home/richard/gambas3-devel/src/trunk /help' make[2]: *** [install-am] Error 2 make[2]: Leaving directory `/home/richard/gambas3-devel/src/trunk /help' make[1]: *** [install-recursive] Error 1 make[1

Re: [Gambas-user] Observer ?

2008-09-18 Thread Benoit Minisini
On jeudi 18 septembre 2008, Kari Laine wrote: > Hi, > > would it be too much asked if someone kind enough would post little > project, which shows how to use observer to subclass TextBox or whatever > normal control? I mean so that the observer gets first peek to events and > then passes them on. B

Re: [Gambas-user] Listview (simple?) problem

2008-09-18 Thread Gianni Piccini
On 18/09/2008 Fabien Bodard wrote: > Easy no ? but you need to store the value of the deleted row for the > move. That's another way, but I should test if it make difficulties when trying to swap item 0 with the previous :-) I think that (for my use, a small list of different items) the best th

Re: [Gambas-user] generating new gambas file [automatic program update]

2008-09-18 Thread Doriano Blengino
Szenográdi Norbert Péter ha scritto: > Hi All, > > Can I create a simple project with automatic update option? > Well, when user starting a program, program will checking a new version > from a portal etc. > If new version possible change itself and restart a new version. > > This is possible? >

[Gambas-user] Observer ?

2008-09-18 Thread Kari Laine
Hi, would it be too much asked if someone kind enough would post little project, which shows how to use observer to subclass TextBox or whatever normal control? I mean so that the observer gets first peek to events and then passes them on. Benoit posted little nugget about ListBox but can't get it

Re: [Gambas-user] UserControl UserContainer

2008-09-18 Thread Kari Laine
On Thu, Sep 18, 2008 at 4:50 PM, Benoit Minisini < [EMAIL PROTECTED]> wrote: > On jeudi 18 septembre 2008, Kari Laine wrote: > > Hi, > > > > is there any documentation about UserControl and UserContainer classes? > > I can't find any... > > > > Best Regards > > Kari > > What do you want to know sp

Re: [Gambas-user] UserControl UserContainer

2008-09-18 Thread Benoit Minisini
On jeudi 18 septembre 2008, Kari Laine wrote: > Hi, > > is there any documentation about UserControl and UserContainer classes? > I can't find any... > > Best Regards > Kari What do you want to know specifically? UserControl is a Container that you use when you want to implement a Control in Gam

[Gambas-user] UserControl UserContainer

2008-09-18 Thread Kari Laine
Hi, is there any documentation about UserControl and UserContainer classes? I can't find any... Best Regards Kari - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based ap

Re: [Gambas-user] Frameless window

2008-09-18 Thread Rolf-Werner Eilert
Laurent Carlier schrieb: > Le jeudi 18 septembre 2008 10:21:37 Rolf-Werner Eilert, vous avez écrit : >> Is it possible to produce a frameless window in Gambas? I'm thinking >> about something that looks like those small explanations popping up in >> KDE when you hover over an icon on the control ba

Re: [Gambas-user] Events

2008-09-18 Thread Kari Laine
Thank You Fabien! this example should be in Gambas documentation. On Thu, Sep 18, 2008 at 1:35 AM, Fabien Bodard <[EMAIL PROTECTED]> wrote: > in what case ? to write you own class ? > > > 'class MyTest > > EVENT MyEvent > > Public test() For others who are beginner with Gambas this should be Pu

Re: [Gambas-user] learning gb.report

2008-09-18 Thread Kari Laine
Hi Fabien, On Thu, Sep 18, 2008 at 1:08 AM, Fabien Bodard <[EMAIL PROTECTED]> wrote: > i don'tt remember why i has done that lol i need to look at that > better ... what did you manage to do about that component ... i've not > finish it yet... i'm waiting for Benoit and the ability of the ide to

Re: [Gambas-user] Frameless window

2008-09-18 Thread Rolf-Werner Eilert
Laurent Carlier schrieb: > Le jeudi 18 septembre 2008 10:21:37 Rolf-Werner Eilert, vous avez écrit : >> Is it possible to produce a frameless window in Gambas? I'm thinking >> about something that looks like those small explanations popping up in >> KDE when you hover over an icon on the control ba

Re: [Gambas-user] Frameless window

2008-09-18 Thread Laurent Carlier
Le jeudi 18 septembre 2008 10:21:37 Rolf-Werner Eilert, vous avez écrit : > Is it possible to produce a frameless window in Gambas? I'm thinking > about something that looks like those small explanations popping up in > KDE when you hover over an icon on the control bar. (Not the tooltips, > or the

[Gambas-user] Frameless window

2008-09-18 Thread Rolf-Werner Eilert
Is it possible to produce a frameless window in Gambas? I'm thinking about something that looks like those small explanations popping up in KDE when you hover over an icon on the control bar. (Not the tooltips, or the ones on the desktop which seem to be more or less tooltips, too.) Thanks for

[Gambas-user] generating new gambas file [automatic program update]

2008-09-18 Thread Szenográdi Norbert Péter
Hi All, Can I create a simple project with automatic update option? Well, when user starting a program, program will checking a new version from a portal etc. If new version possible change itself and restart a new version. This is possible? Regards, Norbert -

Re: [Gambas-user] How to write to a file??

2008-09-18 Thread charlesg
Hi Brittany, You have 2 options: write to a simple text file or write to a database. Writing to a text file is simple. '- ' Gambas class file PUBLIC hFile AS File PUBLIC SUB form_Activate() 'create the file if it does not exist, otherwise just open it

Re: [Gambas-user] How to lock a file

2008-09-18 Thread Almanova Sistemi
No, because if I change the line where I open the file: hfile = OPEN "/usr/far/alman/NOMEFARM.DAT" FOR read wtite I obtain the same message. Fabien Bodard ha scritto: > # If the READ or WRITE keyword are specified, then the input-output > are not buffered. > > # If the INPUT or OUTPUT keyword a