Re: [Gambas-user] Dynamically loading components

2011-05-10 Thread nando
ers Cc: Benoît Minisini Sent: Tue, 10 May 2011 23:04:28 -0300 Subject: Re: [Gambas-user] Dynamically loading components > The reason for doing this is the following: > I'm developing a project which would theoretically have 2 modules, the > base one (the program itself) and t

Re: [Gambas-user] Dynamically loading components

2011-05-10 Thread Sebi Kul
The reason for doing this is the following: I'm developing a project which would theoretically have 2 modules, the base one (the program itself) and the online module, (which adds synchronization capabilities). Because i would like to keep the classes inside the Online module hidden, to avoid an

Re: [Gambas-user] Dynamically loading components

2011-05-10 Thread Benoît Minisini
> Hi! > > I am using Gambas 3 to develop a modular application. I would like to > know if it's possible to load components dynamically (If the component > file exist, load it, if not, skip the execution code where the > component's functions are called) > > What I have so far is this: > > ==

Re: [Gambas-user] Dynamically loading components

2011-05-10 Thread Bruce Bruen
On 11/05/11 08:13, Sebi Kul wrote: > Hi! > > I am using Gambas 3 to develop a modular application. I would like to > know if it's possible to load components dynamically (If the component > file exist, load it, if not, skip the execution code where the > component's functions are called) > > What I

[Gambas-user] Dynamically loading components

2011-05-10 Thread Sebi Kul
Hi! I am using Gambas 3 to develop a modular application. I would like to know if it's possible to load components dynamically (If the component file exist, load it, if not, skip the execution code where the component's functions are called) What I have so far is this: == Try Component.L