
Help - I am getting an error using data control
Sounds like your recordset in the datacontrol's RecordsetType is "readonly"
(possibly set as a snapshot). Make sure the RecordsetType property on the
datacontrol is set to Table or Dynaset.
Another possibility is that you opened your database as "readonly". Make sure
the ReadOnly property on the datacontrol is set to False.
--
Robert R. Thele
[Remove NoSpam_ to reply via E-mail]
Quote:
>I have created a table in Access, created a data control in my VB app and set
>the databasename property to my access file name. I also created textbox
>controls on my form, and "bound" them to the different fields in my table.
>When I move to another record (using the data control) I get an error message:
>'Text' property is read-only.
>I looked at all of my controls, and I didn't "lock" anything. Can someone help
>me? Is there any code I need to put in the form_load? I thought the data
>control did it automatically.