Dynamically Create Databases (.MDB’s) in code
This code creates a Microsoft Access MDB dynamically. Original Author: Kenny Sendel Assumptions This sample code will create a database in the temp directory with the following fields:fldForeNamefldSurnamefldDOBfldFurtherDetails API Declarations NONE Code ”” PUT THIS BEHIND A COMMAND BUTTON TO TEST”’ DeclarationsDim tdExample As TableDefDim fldForeName As FieldDim fldSurname As FieldDim fldDOB As FieldDim fldFurtherDetails As FieldDim dbDatabase As DatabaseDim sNewDBPathAndName As… Read More »