i took a class on vb6 for a year and never once were modules mentioned. What are they? Thanks.
Printable View
i took a class on vb6 for a year and never once were modules mentioned. What are they? Thanks.
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 in another form:Code:sub main()
msgbox "Look Ma; No forms"
end sub
hope that helps :DCode: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