i use this code on my button to open another form called frmAuto_Quote
Private Sub cmdAutoQuote_Click()
DoCmd.OpenForm "frmAuto_Quote"
DoCmd.Close acForm, "frmInventory", acSaveYes
End Sub
how can i make 'frmAuto_Quote' access the correct record from my main table called 'inventory'
can any one point me in the right direction
Private Sub cmdAutoQuote_Click()
DoCmd.OpenForm "frmAuto_Quote"
DoCmd.Close acForm, "frmInventory", acSaveYes
End Sub
how can i make 'frmAuto_Quote' access the correct record from my main table called 'inventory'
can any one point me in the right direction