Recent content by AlbertWorld

  1. A

    Hide all tables and queries with VBA

    Method for restoring all hidden tables Function UnHideAllTables() Dim tdf As TableDef For Each tdf In CurrentDb.TableDefs If tdf.Name Like "msys*" Then Else tdf.Attributes = 0 End If Next tdf Set tdf = Nothing End Function
  2. A

    Hi everyone

    Hello there
Top Bottom