Now I know you cant directly change the data-type for the BE table from the FE sections.
However is it possible to use the FE to open the BE DB, access the BE Table with the field type I want to change, and then change it? Even if I were to have some code in the BE that I would send data to or something.
Would something like this be possible?
OpenDatabase ("C:\AccessDatabase_be.mdb")
(WhateverThingToPointToBEDatabase).Execute "ALTER TABLE [" & strDatabase_Table_ID & "] ALTER [" & strField_ID & "] [" & strField_Type & "];"
However is it possible to use the FE to open the BE DB, access the BE Table with the field type I want to change, and then change it? Even if I were to have some code in the BE that I would send data to or something.
Would something like this be possible?
OpenDatabase ("C:\AccessDatabase_be.mdb")
(WhateverThingToPointToBEDatabase).Execute "ALTER TABLE [" & strDatabase_Table_ID & "] ALTER [" & strField_ID & "] [" & strField_Type & "];"