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...
>
>
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
-
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.
---
> 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
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
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