i took a class on vb6 for a year and never once were modules mentioned. What are they? Thanks.
I am l33t I am a H4x0r I am a l33t H4x0r (j/k =) )
Modules are parts of a project that have no form. useful for containing code that all or alot of the forms use in the project ex: code in module: Code: sub main() msgbox "Look Ma; No forms" end sub code in another form: Code: private sub form1_load() project1.module1.main end sub hope that helps
sub main() msgbox "Look Ma; No forms" end sub
private sub form1_load() project1.module1.main end sub
oooooh............... Thanks a lot =) Makes it clear now. Just never knew what they were for =P
Forum Rules