> On my form I have "Model" linked to "Model" on my subform. My subform
> data
[quoted text clipped - 3 lines]
>
> Thanks,
Thanks Jeanette,
After I added the "Me.Requery" to the after update the form acted as follows;
I select new record (all fields blank), I select a model from the drop down
and the form reverts to record number 1 and the subform displays the
information contained in record 1 even though the model is different.
Perhaps this is because the Model combo is bound?

Signature
PRD
> Are you trying to choose a model on the main form and then show the details
> for that model on the subform?
[quoted text clipped - 14 lines]
> >
> > Thanks,
Jeanette Cunningham - 18 Feb 2008 20:38 GMT
You do need to make the model combo unbound.
Jeanette Cunningham
> Thanks Jeanette,
>
[quoted text clipped - 27 lines]
>> >
>> > Thanks,
PD - 19 Feb 2008 19:59 GMT
Jeanette,
I was able to use "Refresh" in the Model Combo after update event. It seems
to work well. Another question...how can I double-click the text in a field
and have it copied to another field on the same form?
Thanks again!

Signature
PRD
> You do need to make the model combo unbound.
>
[quoted text clipped - 31 lines]
> >> >
> >> > Thanks,
Jeanette Cunningham - 19 Feb 2008 21:05 GMT
PD,
Code the double click event
Select the control txtOriginal
property dialog | events tab | click the button with ellipsis ( ...)
opposite On Dbl Click
choose code builder | OK
type the following line in the code windw that opens
Me.txtCopy = Me.txtOriginal
It should look like this:
Private Sub txtOriginal_DblClick(Cancel As Integer)
Me.txtCopy = Me.txtOriginal
End Sub
replace txtOriginal and txtCopy with the names of your controls
Jeanette Cunningham
> Jeanette,
>
[quoted text clipped - 44 lines]
>> >> >
>> >> > Thanks,