Re: [Gambas-user] Component loading

2011-07-05 Thread Charlie Reinl
Am Dienstag, den 05.07.2011, 23:21 +0200 schrieb tobias: > hi, > > i just noticed porting my component testing project to gambas3 that you > removed the section from COMPONENT_load() which allows to have user > components in ~/.local/lib/whatever ? > what's the reason? i really miss that... > >

[Gambas-user] Component loading

2011-07-05 Thread tobias
hi, i just noticed porting my component testing project to gambas3 that you removed the section from COMPONENT_load() which allows to have user components in ~/.local/lib/whatever ? what's the reason? i really miss that... regards, tobi -

Re: [Gambas-user] Component Loading

2011-06-28 Thread tobias
hi, > What do you want to do exactly? > nothing, i just wanted to know where these compiled classes are. if i use an executable. i couldn't imagine that it is really not unpacked temporarily, but accessed directly... anyway, thanks for the answer. ---

Re: [Gambas-user] Component Loading

2011-06-28 Thread BenoƮt Minisini
> 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) i

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

[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