Not a Member Yet,
Click here to Register

ID: 301
Viewed: 2877
Added: Aug 19, 2002
Version:
Snippet uploaded by: snippet
Written By: Unknown
Demo: Sorry, no demo



User Rated at: 0 Stars
Rate This:

Thank you for your vote. Please wait...

It appears you already voted for this snippet

It appears your vote value was empty

Example Usage of Observer Pattern.

Highlight all by clicking in box
<!---Declaration--->
'
' Declarations Section of a form:
'
Option Explicit
'
Private m_oObservers(5) As CConcreteObserver
Private m_oSubjectObserver As CSubjectObserver
Private m_oSubject As CConcreteSubject
'

Highlight All
<!---Code--->
Private Sub cmdUpdate_Click()
m_oSubject.State = txtState.Text
End Sub
'
Private Sub Form_Load()
'
Dim iLoop As Integer
'
Set m_oSubjectObserver = New cSubjectObserver
Set m_oSubject = New CConcreteSubject
'
m_oSubject.init m_oSubjectObserver
'
' Create 5 Observer objects
'
For iLoop = 1 To 5
Set m_oObservers(iLoop) = New CConcreteObserver
m_oObservers(iLoop).init m_oSubjectObserver, iLoop
Next iLoop
'
End Sub
;


No Comments to show

Please completely fill out the form below if you want to review this snippet. All reviews are subject to validation.


Replying to a Comment...


Adding your comment. Please wait...

Thanks for adding your comment!. After further review it will be added.

There was a problem adding your comment. Please try again.

Please complete all the fields in the form before sending.

© 2002 - 2024 snippetlibrary.com All Rights Reserved. Conditions
Do NOT follow this link or you will be banned from the site!