Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Use of events in the class modules

Status
Not open for further replies.

motto

Programmer
May 28, 2000
23
IN
Hi,<br><br>&nbsp;&nbsp;&nbsp;Can anyone tell me what is use of<br>2 events in the class module.<br><br>1. Initialization<br>2. Termination<br><br>Please give some example on this events.<br><br><br><br>Thanks in advance<br>Motto
 
when you create a class module named System<br>and you create some Subs in there, call them Sub1 and Sub2<br><br>in some other part of the project you'll have.<br><br>Dim mySys as new System<br><br>mySys.Sub1<br>or <br>Mysys.Sub2<br><br>technically its just like creating a class in C++, also Class Modules are very helpful in creating custom collections. If you need more information dont hesitate to ask. <p>Karl<br><a href=mailto:kb244@kb244.8m.com>kb244@kb244.8m.com</a><br><a href= </a><br>Experienced in , or have messed with : VC++, Borland C++ Builder, VJ++6(starting),VB-Dos, VB1 thru VB6, Delphi 3 pro, Borland C++ 3(DOS), Borland C++ 4.5, HTML,Visual InterDev 6, ASP(WebProgramming), QBasic(least i didnt start with COBOL)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top