Kalyan Ganesan
Programmer
I have a form in which all the controls are bound by the Recordsource of the form, when the form loads it bring sup all the 100 records from the two tables that are used to link the queries as the recordsource, all the controls are being non editable, so i gave the following but it doesnt do anything at all
Dim ctrl As Control
For Each ctrl In Me.Controls
ctrl.Locked = False
Next
Me.DataEntry = True
DoCmd.RunCommand acCmdRecordsGoToNew
also tried
DoCmd.GoToRecord , , acNewRec
Dim ctrl As Control
For Each ctrl In Me.Controls
ctrl.Locked = False
Next
Me.DataEntry = True
DoCmd.RunCommand acCmdRecordsGoToNew
also tried
DoCmd.GoToRecord , , acNewRec