Define the scope of Public, Private, Friend procedures?
Answer Posted / guest
The set of public variables, methods, properties, and
events described in a class module define the interface for
an object. The interface consists of the object members
that are available to a programmer who's using the object
from code.<=====>
You can create private variables, methods, properties, and
events that are used by other procedures within the class
module but are not part of the object's public interface.
Additionally, constants user-defined types, and Declare
statements within a class module must always be
private.<====>
The Friend keyword makes a procedure private to the
project: The procedure is available to any code running
within the project, but it is not available to a
referencing project.
| Is This Answer Correct ? | 6 Yes | 9 No |
Post New Answer View All Answers
How many ways we can access file using VB?
How do I get the number of free bytes on a disk?
Explain the working with task in Gantt chart view.
Difference between Linked Object and Embedded Object?
What is database vb?
How do I do drag & drop between applications?
___ property used to add a menus at runtime.
Is it possible to set a shortcut key for label?
How do I remove/change the picture property of a control at design time?
How do you zoom in visual basic?
Discuss the working with to-do lists.
How would you use ActiveX Dll and ActiveX Exe in your application?
What is hyperlink?
To validate a range of values for a property whenever the property values changes,which type of property procedure you use?
How do I implement Undo?