Boa tarde pessoal,
Estive aqui a pesquisar forma de fazer um backup no forum e encontrei algo que me chamou a atenção, um codigo que faz desaparecer as tabelas...pelo menos foi assim que entendi.
Poderiam dizer-me como realmente funciona?? e já agora como poderei fazer funcionar??
Obg
Estive aqui a pesquisar forma de fazer um backup no forum e encontrei algo que me chamou a atenção, um codigo que faz desaparecer as tabelas...pelo menos foi assim que entendi.
Poderiam dizer-me como realmente funciona?? e já agora como poderei fazer funcionar??
- Código:
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
Obg