Hi,
In relation to my previous posts,
Right now, when I double click a record in my subform, it opens a new form without any values being populated.
I tried creating a query to see if that can select the record Im trying to populate in my new form
DoCmd.OpenForm "ChangeNomexQuote", , , " LineItem = " & Me.Text18
MsgBox "opening"
DoCmd.OpenQuery ("ChangeQuoteUpdate")
Forms.Item("[ChangeNomexQuote]").Requery
Using the above query, when I double click the record in a subform, it opens the full record , but in a datasheet view. I want this record to be updated in the fields in the form instead of datasheet view.
How do I do it?
Thanks in advance
In relation to my previous posts,
Right now, when I double click a record in my subform, it opens a new form without any values being populated.
I tried creating a query to see if that can select the record Im trying to populate in my new form
DoCmd.OpenForm "ChangeNomexQuote", , , " LineItem = " & Me.Text18
MsgBox "opening"
DoCmd.OpenQuery ("ChangeQuoteUpdate")
Forms.Item("[ChangeNomexQuote]").Requery
Using the above query, when I double click the record in a subform, it opens the full record , but in a datasheet view. I want this record to be updated in the fields in the form instead of datasheet view.
How do I do it?
Thanks in advance