Under what situations Implements is required.
Can u give me any practical example of using Implements.
IS it not possible to do the same without implements
To be more clear, Tell me exact situations where Implements is used
Thanks & Regards
Raja
Printable View
Under what situations Implements is required.
Can u give me any practical example of using Implements.
IS it not possible to do the same without implements
To be more clear, Tell me exact situations where Implements is used
Thanks & Regards
Raja
I have used "Implements" when using an interface class. To explain the interface class, an interface class is a class module that you will use to build many dll's. Instead of allways re-coding the procedures everytime you just build it once. Then you use Implements {class name} to call it and all the procedures in that class become available to your new class.