|
-
Dec 4th, 2001, 10:59 PM
#1
Thread Starter
New Member
-
Dec 4th, 2001, 11:07 PM
#2
PowerPoster
Module: Just a collection of code which can be accessed by all forms/modules in a project. Mainly good for functions used by different forms.
Class: Well, that's an OO thing, and similar to a module, except that you would instantiate the class to run multiple instances of it. LEarn about OO (Java is a good start) for a good Class lesson.
Property Procedure: If you don't know, then I'm not sure why you're asking, but a Property is just that. (Example - .Picture .Caption .Text etc.) If you were to make an .OCX you would need to add functions Property Let (to assign a value to a property) and Property Get (to retrieve it)
Public: Means a variable/object/function/sub can be accessed by an entire program
Private: Means a variable/object/function/sub can be accessed only by the form or module where it is held
Sub Question: You don't. You can also use Function. Functions return values, subs don't
URL: www.inmyhead.org.au
-----------------------------------------
-RJ
[email protected]
-----------------------------------------
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|