How to code a database to be invisible?
i have a copy command as:
Public Function copydb()
Dim strSource As String
Dim strDest As String
strSource = “C:BEdb1.mdb”
strDest = “C:BEdb2.mdb”
FileCopy strSource, strDest
End Function
Can i give a command in the code to make the copied database invisible?
Something like STrDest.Visible = Fale, alhough it doesnt work