Vulcan1500
Registered User.
- Local time
- Today, 09:43
- Joined
- Nov 13, 2007
- Messages
- 143
I have to modify one of the tables of the backend once the frontend opens. Is this possible and how do I have to change the code?
Code:
strSQL = "ALTER TABLE MyTable IN 'C:\MyDir\MyDB_backend.mdb' " & _
"ALTER COLUMN BackupFolder TEXT(250) " & _
"ADD COLUMN BackupAantal DEFAULT(10);"
DoCmd.RunSQL (strSQL)