One printjob. Exe and 2 DLL (dll1, dll2),
The printjob. Exe in written form the following:
Dim WithEvents A1 as DLL1. Class1
Private Sub A1_FX ()
Msgbox ()...
End Sub
Under dll1 Class1 class wrote:
The Public Event FX ()
Dim WithEvents B2 as DLL2. Class2
Private Sub B2_FX ()
RaiseEvent Fx ()
End Sub
Under dll2 Class2 class wrote:
The Public Event FX ()
Private Sub ZX ()
RaiseEvent Fx ()
End Sub
the question is: how to quote less than printjob. Exe A1_FX process?
CodePudding user response:
Why reference printjob. Exe A1_FX process?A1_FX this process is performed in printjob, other applications to reference printjob?
Didn't understand that question
CodePudding user response:
Is the event calls, how can't perform A1_FX this process?CodePudding user response:
Put three project engineering group, debugging,Didn't run, there is your Sub ZX () no, this is the origin of the event
CodePudding user response:
Sub zx () is only, it can call,