Re: [Gambas-user] Programming, age

2011-06-26 Thread Rolf-Werner Eilert
Am 24.06.2011 22:46, schrieb Fabien Bodard: > 2011/6/24 Dag-Jarle Johansen: >> lol >> >> in fact I think every language is as exact as the writer is able to form his >> sentences. what I ment is - in german you can put things toghether in simple >> manner, spanish is more difficult, and in norwegia

Re: [Gambas-user] Using special method _unknown for object properties

2011-06-26 Thread Benoît Minisini
>To the group: > Here is my problem. I need to use the "_unknown" special function to >simulate object methods and properties at runtime. I coded an > "_unknown" method in a class called DITEM If ditem is an instance of > DITEM and I refer to ditem.A() where A is NOT a method in DI

Re: [Gambas-user] stop

2011-06-26 Thread Kevin Fishburne
On 06/26/2011 06:30 PM, francesc...@gmail.com wrote: > How to Stop from maillinglist? Ah... Go here: https://lists.sourceforge.net/lists/listinfo/gambas-user and visit the bottom section, "Gambas-user Subscribers". -- Kevin Fishburne Eight Virtues www: http://sales.eightvirtues.com e-mail: sa.

[Gambas-user] stop

2011-06-26 Thread francescokm
How to Stop from maillinglist? Powered by Telkomsel BlackBerry® -- All of the data generated in your IT infrastructure is seriously valuable. Why? It contains a definitive record of application performance, security threat

Re: [Gambas-user] Class name bug.

2011-06-26 Thread Benoît Minisini
> some more examples > > i have classes > > cA > cB > cC > > cB inherits cA > cC inherits cB > > 1) With 2 characters as class names the file browser did not show > correct the class tree. > > 2) After INHERITS instruction the class name is capitalized > > 3) in Main module i get > > Dim h

Re: [Gambas-user] Circular Inheritance

2011-06-26 Thread Demosthenes Koptsis
Thanks by me for all this great work you do with Gambas :) On Mon, 2011-06-27 at 00:19 +0200, Benoît Minisini wrote: > > In attached project there is a circular inheritance between cClassB and > > cClassC > > > > If i try to edit cClassB file in line 3 which > > > > INHERITS cClassC > > > > the

Re: [Gambas-user] gambas2 and gambas3 Natty

2011-06-26 Thread Benoît Minisini
> On Sat, Jun 25, 2011 at 5:29 AM, M. Cs. wrote: > > Hello, > > because of a foolish error I cannot use both gambas2 and gambas3 on > > Natty: > > > > gambas3-script_2.99.1-1natty0_i386.deb (--install): > > trying to overwrite > > '/usr/share/icons/hicolor/64x64/mimetypes/application-x-gambasscr

Re: [Gambas-user] Circular Inheritance

2011-06-26 Thread Benoît Minisini
> In attached project there is a circular inheritance between cClassB and > cClassC > > If i try to edit cClassB file in line 3 which > > INHERITS cClassC > > the IDE is stack and i have to kill the IDE with Xkill. The bug should be fixed in revision #3901. Regards, -- Benoît Minisini -

Re: [Gambas-user] gb3: Format$

2011-06-26 Thread Kevin Fishburne
On 06/26/2011 03:09 PM, Benoît Minisini wrote: >>> I hope I'm really not so stupid that I'm missing something obvious. I'm >>> not even drinking right now! >> >> Mmm... You're right, there's something nasty there. I'm currently >> investigating... > > The bug should be fixed in revision #3900. Awe

Re: [Gambas-user] Error balloon

2011-06-26 Thread Demosthenes Koptsis
ok, so i need to remake some screenshots. On Sun, 2011-06-26 at 20:53 +0200, Benoît Minisini wrote: > > In previous versions of svn when there was an error a balloon style > > error was appeared. > > > > Now there is not this style. > > > > Is it going to re-enable it? > > I don't think so, bec

Re: [Gambas-user] Component Loading

2011-06-26 Thread tobias
hi, oh well, it's a very confusing subject in my email, i'm sorry, it's about class loading as a preparation for component loading... i figured it out by myself and the sources... every class is compiled, named with capital letters without extension put into .gambas (in my gambas2) in the projec

Re: [Gambas-user] gb3: Format$

2011-06-26 Thread Benoît Minisini
> > I hope I'm really not so stupid that I'm missing something obvious. I'm > > not even drinking right now! > > Mmm... You're right, there's something nasty there. I'm currently > investigating... The bug should be fixed in revision #3900. Regards, -- Benoît Minisini

Re: [Gambas-user] ScrollView properties

2011-06-26 Thread tobias
hi, to be more exact. you should use: PRINT Mouse.ScreenX - PictureBox1.ScreenX this will give the position of the mouse relative to PictureBox1's 0,0 which is the same as your pictures 0,0 regards, tobi -- All of the d

Re: [Gambas-user] Error balloon

2011-06-26 Thread Benoît Minisini
> In previous versions of svn when there was an error a balloon style > error was appeared. > > Now there is not this style. > > Is it going to re-enable it? I don't think so, because these balloons were not practical. -- Benoît Minisini ---

Re: [Gambas-user] gb3: Format$

2011-06-26 Thread Benoît Minisini
> That makes perfect sense and was the expected behavior. I'm not sure > what's happening here, but this test code: > > Public Sub Main() > >Dim t As Float > >t = CFloat(Now) ' Current time and date. > >Print "1: CDate(t): " & CDate(t) >Print "2: Format$(

[Gambas-user] Error balloon

2011-06-26 Thread Demosthenes Koptsis
In previous versions of svn when there was an error a balloon style error was appeared. Now there is not this style. Is it going to re-enable it? -- Regards, Demosthenes Koptsis. -- All of the data generated in your

Re: [Gambas-user] ScrollView properties

2011-06-26 Thread tobias
hi, i am really tired today so i think that's the reason why i don't understand entirely what you want but i think i know... you have a big picture in a ScrollView which is scrolled somewhere and you want to track the mouse position relatively to 0,0 on your picture, right? i thought about this

[Gambas-user] ScrollView properties

2011-06-26 Thread M. Cs.
How can get the the minimum and maximum value of scrolling position of a ScrollView? The task I'd like to solve is to open a picture which is put into a PictureBox inside a ScrollView. My problem is how to get the right X and Y coordinates under the mouse pointer, but related to the (0,0) coordina

[Gambas-user] Component Loading

2011-06-26 Thread tobias
hi, i never used the Class class before and now tried, as a preparation for using Component class, to manually load a class. the class looks like: PUBLIC SUB _init() PRINT "Here I am" END if i load it using Class.Load("testclass") everything is fine. i saw in the sources (just in a comment) t

Re: [Gambas-user] Bug with border property.

2011-06-26 Thread Jussi Lahtinen
metacity 2.30.3 Jussi 2011/6/25 Benoît Minisini > > Hi! > > Borderless windows doesn't work (borders are showing) when combined to > > 'Mask = True'. > > Problem is only with Qt4, with GTK+ everything is OK. > > > > Gambas 3 rev 3888 @ Ubuntu 11.04 64bit > > > > Jussi > > I habe no problem on

Re: [Gambas-user] gb3: Format$

2011-06-26 Thread EA7DFH
El 26/06/11 05:54, Kevin Fishburne escribió: > On 06/25/2011 09:41 PM, nando wrote: >> Yes-Silly me! >> How about trying the print statements with ; and not& >> I'm curious how the bug manifests. > > It displays the same results: > > Public Sub Main() > >Dim t As Float > >t = CFloat(Now