1 | テーブル系 - テーブル名を収集する | |||
カレントデータベース内にあるテーブル名の一覧を収集します。
Sub Sample_1_01() 'テーブル名を収集する Dim dbs As Database Dim tdf As TableDef Set dbs = CurrentDb For Each tdf In dbs.TableDefs With tdf If ((.Attributes And dbSystemObject) Or _ (.Attributes And dbHiddenObject)) = 0 Then Debug.Print .Name End If End With Next tdf End Sub
実行例:
|
||||
|
Copyright © T'sWare All rights reserved |