Link to home
Start Free TrialLog in
Avatar of samyee
samyee

asked on

What is the equavilent RaiseEvent of VB in MFC?

In VB, u can raise a user-defined event by RaiseEvent...
e.g. in VB
Event XX
Sub YYYY
   .......
   RaiseEvent XX
End Sub

May I know how to do so in MFC??? Please provide a full working sample code as well....

Though I could not afford much points but I promise good grade.... :-)
Avatar of chris_a
chris_a

Use class wizard to add the event, then you just call the procedure it creates
ASKER CERTIFIED SOLUTION
Avatar of amby
amby

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of samyee

ASKER

Thanks a lot!!!