Guest_imported
New member
- Jan 1, 1970
- 0
The following source code is in a module:
Public gDDApp As Datadicky.clsDDApp 'declaration
..
..
Public Function Main()
Set gDDApp = Nothing
Set gDDApp = New Datadict.clsDDApp
gDDApp.Application = Access.Application
End Function
Assuming I have a dll called 'datadict' containing a class called 'clsDDApp', why should the last statement(gDDApp.Application = Access.Application ) not function??
kingsley
Public gDDApp As Datadicky.clsDDApp 'declaration
..
..
Public Function Main()
Set gDDApp = Nothing
Set gDDApp = New Datadict.clsDDApp
gDDApp.Application = Access.Application
End Function
Assuming I have a dll called 'datadict' containing a class called 'clsDDApp', why should the last statement(gDDApp.Application = Access.Application ) not function??
kingsley