Will an ActiveX control wait for any code in an event handler to finish executing before processing the code after the RaiseEvent call?
Example:
VB Code:
'In the ActiveX control... MsgBox "1" RaiseEvent Call("2") MsgBox "3" '...rest of code 'In the calling application Public Sub MyControl_Call(Msg As String) MsgBox Msg End Sub
Will I get 1,2,3?




Reply With Quote