We have programs that use Masked Edit Boxes.
We are also migrating from Access 97 to Access 2000. This requires us to use ADO controls instead of the DAO controls that were on the program.

When clearing the masked edit box the following code is required:
mebDate.Mask = ""
mebDate.Text= ""
mebDate.Mask = "##/##/####"

This code worked fine using the DAO controls but with the ADO controls, it is giving us error: "Field not updatable, bound property name: text, field name: Transmittal Date". The title bar on this message box says: "Binding Collection Error". This error occurs on each of the above 3 lines of code.

Has anyone else run into this kind of problem?
Can we use Masked Edit Boxes with ADO controls?
If not, is there another type of Masked Edit Box that will work with ADO controls?