Re: [Gambas-user] How can I move "public sub" in other separated files?

2010-06-27 Thread Simone Gentili
Thanks a lot!!! Now I've main file: ' Gambas class file PUBLIC SUB _new() Tastiera.disegnaLableChitarra(ME) Tastiera.disegnaTastieraChitarra(ME) END and a module named "tastiera" with these two sub ' Gambas module file PUBLIC SUB disegnaTastieraChitarra(form AS Form) DIM hButton AS Button

Re: [Gambas-user] How can I move "public sub" in other separated files?

2010-06-27 Thread Richard
On Sunday 27 June 2010 13:46:29 Simone Gentili wrote: > This is my "main" program. > > PUBLIC SUB _new() > disegnaLableChitarra() > disegnaTastieraChitarra() > END > > > These are two subroutines but I want to have them in separated file. What I > have to do? > PUBLIC SUB disegnaLableChitarra()

[Gambas-user] How can I move "public sub" in other separated files?

2010-06-27 Thread Simone Gentili
This is my "main" program. PUBLIC SUB _new() disegnaLableChitarra() disegnaTastieraChitarra() END These are two subroutines but I want to have them in separated file. What I have to do? PUBLIC SUB disegnaLableChitarra() DIM lableChitarra AS Label lableChitarra = NEW Label(ME) AS "MiaLabl