Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Tuning: combobox of tables 2

Status
Not open for further replies.

hkaing79

Technical User
Jul 26, 2004
234
0
0
US
Just curious if there are more efficient ways of going about this. I would like to populate a combobox with a list of all the tables in the database.
Code:
Function AllTables()
    Dim db As Database
    Dim tbl As TableDef
    Dim strTable As String
    
    Set db = CurrentDb()
    strTable = ""
    
    For Each tbl In db.TableDefs
        If Left(tbl.Name, 4) <> "msys" Then
            strTable = strTable & "'" & tbl.Name & "';"
        End If
    Next tbl
    
    AllTables = strTable
End Function

cboTable.RowSourceType = "Value List"
cboTable.RowSource = AllTables

Is there a built in command that I overlooked?

It's fine for now because there's not many tables, but I'm planning to use the same algorithm to populate a second combobox listing all the fields in the table (which can be quite long).
 
to populate a second combobox listing all the fields in the table
cboField.RowSourceType = "Field List"
cboField.RowSource = cboTable.Value

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
 
How are ya hkaing79 . . . . .

Try this:
Code:
[blue]   Dim SQL As String
   
   SQL = "SELECT Name " & _
         "FROM MSysObjects " & _
         "WHERE ((Left([Name],4)<>'MSys') AND (Type=1));"

   Me!cboTable.RowSourceType = "Table/Query"
   Me!cboTable.RowSource = SQL[/blue]

Calvin.gif
See Ya! . . . . . .
 
WOW. Thanks to both of you. Much shorter coding.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top