VBA/Excel/Access/Word/Access/CurrentData — различия между версиями

Материал из VB Эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Версия 16:33, 26 мая 2010

Loop through all queries in the database referenced by the CurrentData object.

 
Sub IterateAllQueries()
    Dim vnt As Variant
    With CurrentData
        For Each vnt In .AllQueries
            "Print the name of the table
            Debug.Print vnt.Name
        Next vnt
    End With
End Sub



Loop through each table in the database by the CurrentData object

 
Sub IterateAllTables()
    Dim vnt As Variant
    With CurrentData
        For Each vnt In .AllTables
            "Print the name of the table
            Debug.Print vnt.Name
        Next vnt
    End With
End Sub



Loop through each table in the database referenced by the CurrentData object

 
Public Sub GetDates()
    Dim vnt As Variant
    With CurrentData
        For Each vnt In .AllTables
            Debug.Print vnt.Name & ", " & vnt.DateCreated & ", " & vnt.DateModified
        Next vnt
    End With
End Sub