Re: [Gambas-user] can't call a procedure from a different module

2009-12-02 Thread BenoƮt Minisini
> [SOLVED] > > Kadaitcha Man wrote: > > 2009/12/2 kevinfishburne : > >> (2) Module "Server" then calls the procedure "Init" contained within > >> module > >> "Net" (Net.Init). > > > > Net is reserved for the Net class of constants in gambas. Rename the > > module. > > > > -

Re: [Gambas-user] can't call a procedure from a different module

2009-12-02 Thread kevinfishburne
[SOLVED] Kadaitcha Man wrote: > > 2009/12/2 kevinfishburne : > >> (2) Module "Server" then calls the procedure "Init" contained within >> module >> "Net" (Net.Init). > > Net is reserved for the Net class of constants in gambas. Rename the > module. > > ---

Re: [Gambas-user] can't call a procedure from a different module

2009-12-01 Thread Kadaitcha Man
2009/12/2 kevinfishburne : > (2) Module "Server" then calls the procedure "Init" contained within module > "Net" (Net.Init). Net is reserved for the Net class of constants in gambas. Rename the module. -- Join us Decembe

[Gambas-user] can't call a procedure from a different module

2009-12-01 Thread kevinfishburne
I'm hoping that I've just overlooked something really obvious and stupid, but am stumped (perhaps it's the four beers...). I'm receiving the error message "Unknown symbol 'Init' in class 'Net'" while trying to call a procedure from a different module. Here's the basic program flow: (1) Startup mo