T
TNL
Hi,
I use VB 6.0 to access an access 2000 DB, as following:
dim AccApp As Access.Application
Set AccApp = New Access.Application
AccApp.OpenCurrentDatabase "test.mdb"
With AccApp.Modules
For i = 0 To .Count - 1
debug.print .Item(i).Name
Next i
End With
The database test.mdb had 13 modules (4 standard and 9
classmodule, forms and reports), but the Modules.count
returns always only 6.
Why? Can anybody help me?
Thanks
TNL
Why
I use VB 6.0 to access an access 2000 DB, as following:
dim AccApp As Access.Application
Set AccApp = New Access.Application
AccApp.OpenCurrentDatabase "test.mdb"
With AccApp.Modules
For i = 0 To .Count - 1
debug.print .Item(i).Name
Next i
End With
The database test.mdb had 13 modules (4 standard and 9
classmodule, forms and reports), but the Modules.count
returns always only 6.
Why? Can anybody help me?
Thanks
TNL
Why