Estou a utilizar o código abaixo pego aqui no forum - Utilizo o Access 2007 (Esse codigo sim oculta a tabela nem marcando mostrar objetos ocultos aparece) fiz no access 2003 funcionou legal mas no 2007 não
Function EscondeTabelas()
Dim Tb As TableDef
For Each Tb In CurrentDb.TableDefs
If Not Tb.Attributes And dbHiddenObject Then
Tb.Attributes = Tb.Attributes Or dbHiddenObject
End If
Next
End Function
Function MostraTabelas()
For Each Tb In CurrentDb.TableDefs
If Tb.Attributes And dbHiddenObject Then
Tb.Attributes = Tb.Attributes Xor dbHiddenObject
End If
Next
End Function
Não estava funcionando, então dei uma mexida no código no esconder tabelas e funcionou no entanto o mostrar tabelas não consegui arrumar...
Function EscondeTabelas()
Dim Tb As TableDef
For Each Tb In CurrentDb.TableDefs
If Not dbHiddenObject Then
Tb.Attributes = dbHiddenObject
End If
Next
End Function
agradeço a atenção!
Function EscondeTabelas()
Dim Tb As TableDef
For Each Tb In CurrentDb.TableDefs
If Not Tb.Attributes And dbHiddenObject Then
Tb.Attributes = Tb.Attributes Or dbHiddenObject
End If
Next
End Function
Function MostraTabelas()
For Each Tb In CurrentDb.TableDefs
If Tb.Attributes And dbHiddenObject Then
Tb.Attributes = Tb.Attributes Xor dbHiddenObject
End If
Next
End Function
Não estava funcionando, então dei uma mexida no código no esconder tabelas e funcionou no entanto o mostrar tabelas não consegui arrumar...
Function EscondeTabelas()
Dim Tb As TableDef
For Each Tb In CurrentDb.TableDefs
If Not dbHiddenObject Then
Tb.Attributes = dbHiddenObject
End If
Next
End Function
agradeço a atenção!
Última edição por noisnafita em 5/8/2014, 19:12, editado 1 vez(es)