Results 1 to 3 of 3

Thread: modules

  1. #1

    Thread Starter
    New Member
    Join Date
    Nov 2000
    Location
    California
    Posts
    3
    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 =) )

  2. #2
    New Member
    Join Date
    Sep 2000
    Posts
    14

    Talking

    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

  3. #3

    Thread Starter
    New Member
    Join Date
    Nov 2000
    Location
    California
    Posts
    3

    Smile cool

    oooooh...............

    Thanks a lot =) Makes it clear now. Just never knew what they were for =P
    I am l33t
    I am a H4x0r
    I am a l33t H4x0r
    (j/k =) )

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width