Hello,
Would like an InputBox where the user can pick from one of all the tables in the DB?
Sub GetTableNames() Dim tdf As TableDef For Each tdf In CurrentDb.TableDefs If tdf.Name Like "MSys*" Or tdf.Name = "Accesss System" Then Else result = InputBox("Enter value for " & tdf.Name, "Table Value Input", "Default Value") End If Next tdf End Sub
Thanks in advance,
Would like an InputBox where the user can pick from one of all the tables in the DB?
Sub GetTableNames() Dim tdf As TableDef For Each tdf In CurrentDb.TableDefs If tdf.Name Like "MSys*" Or tdf.Name = "Accesss System" Then Else result = InputBox("Enter value for " & tdf.Name, "Table Value Input", "Default Value") End If Next tdf End Sub
Thanks in advance,