I Hid all Tables with this Function I cannot unHide it. Any Ideas how to unhide these Tables.
Function Test()
For Each AllTables In CurrentDb.TableDefs
'Get the Table name
tblname = AllTables.NAME
If Mid(tblname, 1, 4) <> "Msys" Then
'Hide All Tables
If AllTables.Attributes <> 1073741825 Then
AllTables.Attributes = dbHiddenObject
End If
End If
Next AllTables
End Function
Thanks in Advance!!
Function Test()
For Each AllTables In CurrentDb.TableDefs
'Get the Table name
tblname = AllTables.NAME
If Mid(tblname, 1, 4) <> "Msys" Then
'Hide All Tables
If AllTables.Attributes <> 1073741825 Then
AllTables.Attributes = dbHiddenObject
End If
End If
Next AllTables
End Function
Thanks in Advance!!