ФОРМА:
- Код: Выделить всё
Option Explicit
Dim WithEvents h As Class1
Private Sub h_ok()
MsgBox "yes"
End Sub
Private Sub Command1_Click()
Dim g As New Class1
Set g = New Class1
g.geme 0
Set g = Nothing
End Sub
Класс Class1:
- Код: Выделить всё
Option Explicit
Public Event OK()
Public Function geme(t As Long)
If t = 0 Then RaiseEvent OK
End Function
в чем трабл?